[Gemspec] Add dependency on cocoapods-plugins
Closes https://github.com/CocoaPods/CocoaPods/issues/2092
Showing
... | @@ -10,9 +10,10 @@ group :development do | ... | @@ -10,9 +10,10 @@ group :development do |
# For more info see http://bundler.io/git.html#local | # For more info see http://bundler.io/git.html#local | ||
gem 'cocoapods-core', :git => "https://github.com/CocoaPods/Core.git", :branch => 'master' | gem 'cocoapods-core', :git => "https://github.com/CocoaPods/Core.git", :branch => 'master' | ||
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 'claide', :git => 'https://github.com/CocoaPods/CLAide.git', :branch => 'master' | gem 'claide', :git => 'https://github.com/CocoaPods/CLAide.git', :branch => 'master' | ||
gem 'cocoapods-downloader', :git => "https://github.com/CocoaPods/cocoapods-downloader.git", :branch => 'master' | |||
gem 'cocoapods-try', :git => 'https://github.com/CocoaPods/cocoapods-try.git', :branch => 'master' | gem 'cocoapods-try', :git => 'https://github.com/CocoaPods/cocoapods-try.git', :branch => 'master' | ||
gem 'cocoapods-plugins', :git => 'https://github.com/CocoaPods/cocoapods-plugins.git', :branch => 'master' | |||
gem 'rake', '~> 10.1.0' # Ruby 1.8.7 | gem 'rake', '~> 10.1.0' # Ruby 1.8.7 | ||
gem "mocha" | gem "mocha" | ||
... | ... |
... | @@ -29,8 +29,9 @@ s.files = Dir["lib/**/*.rb"] + %w{ bin/pod bin/sandbox-pod README.md LICENSE CHA | ... | @@ -29,8 +29,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.5.0' | s.add_runtime_dependency 'claide', '~> 0.5.0' | ||
s.add_runtime_dependency 'cocoapods-downloader', '~> 0.5.0' | |||
s.add_runtime_dependency 'xcodeproj', '~> 0.16.1' | s.add_runtime_dependency 'xcodeproj', '~> 0.16.1' | ||
s.add_runtime_dependency 'cocoapods-downloader', '~> 0.5.0' | |||
s.add_runtime_dependency 'cocoapods-plugins', '~> 0.1.0' | |||
s.add_runtime_dependency 'cocoapods-try', '~> 0.2.0' | s.add_runtime_dependency 'cocoapods-try', '~> 0.2.0' | ||
s.add_runtime_dependency 'colored', '~> 1.2' | s.add_runtime_dependency 'colored', '~> 1.2' | ||
... | ... |
Please
register
or
sign in
to comment