[Gemfile] Adopt local git repos feature of Bunlder
Showing
... | @@ -6,15 +6,11 @@ end | ... | @@ -6,15 +6,11 @@ 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" | ||
... | ... |
Please
register
or
sign in
to comment