Commit 6888437f authored by Orta's avatar Orta

Merge pull request #4212 from JamieREvans/patch-1

Added `source` and valuable flags to Podfile template
parents 2c3185a1 1ae4e3ca
...@@ -11,7 +11,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -11,7 +11,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
* Use watchsimulator when validating pods with the watchOS platform. * Use watchsimulator when validating pods with the watchOS platform.
[Thomas Kollbach](https://github.com/toto) [Thomas Kollbach](https://github.com/toto)
[#4130](https://github.com/CocoaPods/CocoaPods/issues/4130) [#4130](https://github.com/CocoaPods/CocoaPods/issues/4130)
* C or C++ preprocessor output files with `.i` extension now have their compiler * C or C++ preprocessor output files with `.i` extension now have their compiler
flags set correctly. flags set correctly.
[Andrea Aresu](https://github.com/aaresu/) [Andrea Aresu](https://github.com/aaresu/)
...@@ -20,6 +20,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre` ...@@ -20,6 +20,9 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[Boris Bügling](https://github.com/neonichu) [Boris Bügling](https://github.com/neonichu)
[#4219](https://github.com/CocoaPods/CocoaPods/issues/4219) [#4219](https://github.com/CocoaPods/CocoaPods/issues/4219)
* Podfile generated by `pod init` now specifies iOS 8.0 as the default platform
and includes `use_frameworks!` for Swift projects.
[Jamie Evans](https://github.com/JamieREvans)
## 0.39.0.beta.4 (2015-09-02) ## 0.39.0.beta.4 (2015-09-02)
......
...@@ -57,7 +57,9 @@ module Pod ...@@ -57,7 +57,9 @@ module Pod
podfile << "xcodeproj '#{@project_path}'\n\n" if @project_path podfile << "xcodeproj '#{@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 this line to define a global platform for your project
# platform :ios, '6.0' # platform :ios, '8.0'
# Uncomment this line if you're using Swift
# use_frameworks!
PLATFORM PLATFORM
project.targets.each do |target| project.targets.each do |target|
......
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