[Gemfile] Adopt local git repos feature of Bunlder
Showing
... | ... | @@ -6,15 +6,11 @@ end |
gemspec | ||
group :development do | ||
if ENV['COCOA_PODS_DEPENDENCIES'] == 'local' | ||
gem 'cocoapods-core', :path => '../Core' | ||
gem 'xcodeproj', :path => '../Xcodeproj' | ||
gem 'cocoapods-downloader', :path => '../cocoapods-downloader' | ||
else | ||
# To develop the deps in tandem use the `LOCAL GIT REPOS` feature of Bundler. | ||
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 '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 "mocha" | ||
gem "bacon" | ||
... | ... |
Please
register
or
sign in
to comment