Merge branch 'master' into dedicated-targets
* master: [ErrorReport] Fix issues search url Pods-resources.sh: Generate newlines between install_resource calls [Sandbox] Try to make an educated guess as to where the MacPorts prefix is. [Sandbox] Small cleanup. [Changelog] Add note about the path option and the sandbox [ci skip] [Command::Help] Show root help with 'pod help' [Specs] Use pretty bacon [Command] default to install [CHANGELOG] Add note about other package managers than Homebrew. [CHANGELOG] Cleanup last addition regarding sandbox. [CHANGELOG] Introduce the experimental sandbox feature. [Gemfile] Adopt local git repos feature of Bunlder [CopyResourcesScript] Fix permissions Update CHANGELOG.md [CopyResourcesScript] Restore compatiblity with Ruby 1.8.7 [SpecHelper] Use Coveralls only in Ruby > 1.8 [Gemspec] Bump json dep [SpecHelper] Don't require simplecov in Ruby 1.8.x
Showing
... | @@ -6,19 +6,16 @@ end | ... | @@ -6,19 +6,16 @@ end |
gemspec | gemspec | ||
group :development do | group :development do | ||
if ENV['COCOA_PODS_DEPENDENCIES'] == 'local' | # To develop the deps in tandem use the `LOCAL GIT REPOS` feature of Bundler. | ||
gem 'cocoapods-core', :path => '../Core' | gem 'cocoapods-core', :git => "https://github.com/CocoaPods/Core.git", :branch => 'master' | ||
gem 'xcodeproj', :path => '../Xcodeproj' | gem 'xcodeproj', :git => "https://github.com/CocoaPods/Xcodeproj.git", :branch => 'master' | ||
gem 'cocoapods-downloader', :path => '../cocoapods-downloader' | gem 'cocoapods-downloader', :git => "https://github.com/CocoaPods/cocoapods-downloader.git", :branch => 'master' | ||
else | gem 'claide', :git => 'https://github.com/CocoaPods/CLAide.git', :branch => 'master' | ||
gem 'cocoapods-core', :git => "https://github.com/CocoaPods/Core.git", :branch => 'master' | |||
gem 'xcodeproj', :git => "https://github.com/CocoaPods/Xcodeproj.git" | |||
gem 'cocoapods-downloader', :git => "https://github.com/CocoaPods/cocoapods-downloader.git" | |||
end | |||
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 "rake" | gem "rake" | ||
gem 'coveralls', :require => false, :git => 'https://github.com/lemurheavy/coveralls-ruby.git' | gem 'coveralls', :require => false, :git => 'https://github.com/lemurheavy/coveralls-ruby.git' | ||
end | end | ||
... | ... |
... | @@ -36,7 +36,7 @@ Gem::Specification.new do |s| | ... | @@ -36,7 +36,7 @@ Gem::Specification.new do |s| |
s.add_runtime_dependency 'octokit', '~> 1.7' | s.add_runtime_dependency 'octokit', '~> 1.7' | ||
s.add_runtime_dependency 'colored', '~> 1.2' | s.add_runtime_dependency 'colored', '~> 1.2' | ||
s.add_runtime_dependency 'escape', '~> 0.0.4' | s.add_runtime_dependency 'escape', '~> 0.0.4' | ||
s.add_runtime_dependency 'json', '~> 1.7.3' | s.add_runtime_dependency 'json', '~> 1.8.0' | ||
s.add_runtime_dependency 'open4', '~> 1.3.0' | s.add_runtime_dependency 'open4', '~> 1.3.0' | ||
s.add_runtime_dependency 'rake', '~> 10.0.0' | s.add_runtime_dependency 'rake', '~> 10.0.0' | ||
s.add_runtime_dependency 'activesupport', '~> 3.2.13' | s.add_runtime_dependency 'activesupport', '~> 3.2.13' | ||
... | ... |
Please
register
or
sign in
to comment