Merge branch 'master' into gf-fix-pod-push
* master: (88 commits) [Gemspec] Switch back to cocoapods-try in favour of the release fix [Gemfile] Add version requirements to rake for Ruby 1.8.7 [Integration] Update tests [Gemspec] Bump Xcodeproj version [Gemspec] Bump CLAide version [Gemspec] Bump cocoapods-downloader version Join the two description paragraphs of Required parameters should not contain square braces Add different wording for `lib create` command description Name is not optional -> no square braces Add Changelog note for `pod lib create` template URL Add note for `pod lib create` and optional template URL Add possibility to specify a template URL Convert indention into spaces instead of tabs Ensure file descriptors are closed [Search] Web search should escape queries [Search] Don't validate for valid regex on web searchs pod_target_installer: Remove 6-month-old comment. validator.rb: Conform to 2-space indentation. validator.rb: Print xcodebuild command on -v. ... Conflicts: CHANGELOG.md
Showing
... | @@ -12,12 +12,16 @@ group :development do | ... | @@ -12,12 +12,16 @@ group :development do |
gem 'xcodeproj', :git => "https://github.com/CocoaPods/Xcodeproj.git", :branch => 'master' | gem 'xcodeproj', :git => "https://github.com/CocoaPods/Xcodeproj.git", :branch => 'master' | ||
gem 'cocoapods-downloader', :git => "https://github.com/CocoaPods/cocoapods-downloader.git", :branch => 'master' | gem 'cocoapods-downloader', :git => "https://github.com/CocoaPods/cocoapods-downloader.git", :branch => 'master' | ||
gem 'claide', :git => 'https://github.com/CocoaPods/CLAide.git', :branch => 'master' | gem 'claide', :git => 'https://github.com/CocoaPods/CLAide.git', :branch => 'master' | ||
gem 'cocoapods-try', :git => 'https://github.com/CocoaPods/cocoapods-try.git', :branch => 'master' | |||
gem "mocha" | gem "mocha" | ||
gem "bacon" | gem "bacon" | ||
gem "mocha-on-bacon" | gem "mocha-on-bacon" | ||
gem 'prettybacon', :git => 'https://github.com/irrationalfab/PrettyBacon.git', :branch => 'master' | gem 'prettybacon', :git => 'https://github.com/irrationalfab/PrettyBacon.git', :branch => 'master' | ||
gem "rake" | gem 'rake', '~> 10.1.0' # Ruby 1.8.7 | ||
# For the integration tests | |||
gem "diffy" | |||
gem 'mime-types', '< 2' # v2 is 1.9.x only | gem 'mime-types', '< 2' # v2 is 1.9.x only | ||
gem 'coveralls', :require => false | gem 'coveralls', :require => false | ||
... | @@ -27,12 +31,15 @@ group :development do | ... | @@ -27,12 +31,15 @@ group :development do |
end | end | ||
group :debugging do | group :debugging do | ||
# Only while we test the trunk app. | |||
gem 'cocoapods-trunk', :git => "https://github.com/alloy/cocoapods-trunk.git" | |||
gem "rb-fsevent" | gem "rb-fsevent" | ||
gem "kicker", :git => "https://github.com/alloy/kicker.git", :branch => "master" | gem "kicker", :git => "https://github.com/alloy/kicker.git", :branch => "master" | ||
gem "awesome_print" | gem "awesome_print" | ||
gem "pry" | gem "pry" | ||
gem "diffy" | # The released gem leads to stack too deep when profiling a full run. | ||
gem "ruby-prof" | gem "ruby-prof", :git => "https://github.com/ruby-prof/ruby-prof.git" | ||
end | end | ||
group :documentation do | group :documentation do | ||
... | ... |
... | @@ -28,9 +28,9 @@ s.files = Dir["lib/**/*.rb"] + %w{ bin/pod bin/sandbox-pod README.md LICENSE CHA | ... | @@ -28,9 +28,9 @@ s.files = Dir["lib/**/*.rb"] + %w{ bin/pod bin/sandbox-pod README.md LICENSE CHA |
# Link with the version of CocoaPods-Core | # Link with the version of CocoaPods-Core | ||
s.add_runtime_dependency 'cocoapods-core', "= #{Pod::VERSION}" | s.add_runtime_dependency 'cocoapods-core', "= #{Pod::VERSION}" | ||
s.add_runtime_dependency 'claide', '~> 0.4.0' | s.add_runtime_dependency 'claide', '~> 0.5.0' | ||
s.add_runtime_dependency 'cocoapods-downloader', '~> 0.2.0' | s.add_runtime_dependency 'cocoapods-downloader', '~> 0.4.0' | ||
s.add_runtime_dependency 'xcodeproj', '~> 0.14.1' | s.add_runtime_dependency 'xcodeproj', '~> 0.15.0' | ||
s.add_runtime_dependency 'cocoapods-try', '~> 0.1.0' | s.add_runtime_dependency 'cocoapods-try', '~> 0.1.0' | ||
s.add_runtime_dependency 'colored', '~> 1.2' | s.add_runtime_dependency 'colored', '~> 1.2' | ||
... | ... |
Please
register
or
sign in
to comment