Commit b23673d4 authored by Rob Hudson's avatar Rob Hudson Committed by Ben Asher

Make comments more clear

parent 909f77ab
...@@ -56,7 +56,7 @@ module Pod ...@@ -56,7 +56,7 @@ module Pod
podfile = '' podfile = ''
podfile << "project '#{@project_path}'\n\n" if @project_path podfile << "project '#{@project_path}'\n\n" if @project_path
podfile << <<-PLATFORM.strip_heredoc podfile << <<-PLATFORM.strip_heredoc
# Uncomment this line to define a global platform for your project # Uncomment the next line to define a global platform for your project
# platform :ios, '9.0' # platform :ios, '9.0'
PLATFORM PLATFORM
...@@ -86,13 +86,13 @@ module Pod ...@@ -86,13 +86,13 @@ module Pod
target_module << if app.resolved_build_setting('SWIFT_OPTIMIZATION_LEVEL').values.any? target_module << if app.resolved_build_setting('SWIFT_OPTIMIZATION_LEVEL').values.any?
<<-RUBY <<-RUBY
# Comment this line if you're not using Swift and don't want to use dynamic frameworks # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks! use_frameworks!
RUBY RUBY
else else
<<-RUBY <<-RUBY
# Uncomment this line if you're using Swift or would like to use dynamic frameworks # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks! # use_frameworks!
RUBY RUBY
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment