Commit dad69260 authored by Fabio Pelosin's avatar Fabio Pelosin

[Gemspec] Add dependency on cocoapods-plugins

Closes https://github.com/CocoaPods/CocoaPods/issues/2092
parent 5f368373
......@@ -6,6 +6,11 @@ To install or update CocoaPods see this [guide](http://docs.cocoapods.org/guides
##### Enhancements
* The extremely meta `cocoaPods-plugin` is now installed by default providing
information about the available and the installed plug-ins.
[Fabio Pelosin][irrationalfab]
[#2092](https://github.com/CocoaPods/CocoaPods/issues/2092)
* Validate the reachability of social_media_url, documentation_url and
docset_url in podspecs we while linting a specification.
[Kyle Fuller](https://github.com/kylef)
......
......@@ -10,9 +10,10 @@ group :development do
# For more info see http://bundler.io/git.html#local
gem 'cocoapods-core', :git => "https://github.com/CocoaPods/Core.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 '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-plugins', :git => 'https://github.com/CocoaPods/cocoapods-plugins.git', :branch => 'master'
gem 'rake', '~> 10.1.0' # Ruby 1.8.7
gem "mocha"
......
......@@ -32,6 +32,14 @@ GIT
specs:
cocoapods-downloader (0.5.0)
GIT
remote: https://github.com/CocoaPods/cocoapods-plugins.git
revision: ce2d30ff9bd4570708e51a2bdac4d8de60fe9bfc
branch: master
specs:
cocoapods-plugins (0.1.1)
nap
GIT
remote: https://github.com/CocoaPods/cocoapods-try.git
revision: 0dff2c697f487bf1b3b3ecf21deefa99020b948e
......@@ -53,6 +61,7 @@ PATH
claide (~> 0.5.0)
cocoapods-core (= 0.32.1)
cocoapods-downloader (~> 0.5.0)
cocoapods-plugins (~> 0.1.0)
cocoapods-try (~> 0.2.0)
colored (~> 1.2)
escape (~> 0.0.4)
......@@ -153,6 +162,7 @@ DEPENDENCIES
cocoapods!
cocoapods-core!
cocoapods-downloader!
cocoapods-plugins!
cocoapods-try!
coveralls
diffy
......
......@@ -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
s.add_runtime_dependency 'cocoapods-core', "= #{Pod::VERSION}"
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 '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 'colored', '~> 1.2'
......
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