Use last version of faraday that doesn't complain about `system_timer` gem missing.
Showing
... | @@ -4,7 +4,14 @@ gem "colored" | ... | @@ -4,7 +4,14 @@ gem "colored" |
gem "escape" | gem "escape" | ||
gem "json" | gem "json" | ||
gem "open4" | gem "open4" | ||
gem "octokit" | |||
# We don't want octokit to pull in faraday 0.8.0, as it prints a warning about | |||
# the `system_timer` gem being needed, which isn't available on 1.9.x | |||
# | |||
# Once faraday 0.8.1 is released this should be resolved: | |||
# https://github.com/technoweenie/faraday/pull/147 | |||
gem "faraday", "0.7.6" | |||
gem "octokit", "<= 1.0.3" | |||
group :development do | group :development do | ||
gem "xcodeproj", :git => "git://github.com/CocoaPods/Xcodeproj.git" | gem "xcodeproj", :git => "git://github.com/CocoaPods/Xcodeproj.git" | ||
... | ... |
... | @@ -28,10 +28,17 @@ Gem::Specification.new do |s| | ... | @@ -28,10 +28,17 @@ Gem::Specification.new do |s| |
s.post_install_message = "[!] If this is your first time install of CocoaPods, or if " \ | s.post_install_message = "[!] If this is your first time install of CocoaPods, or if " \ | ||
"you are upgrading, first run: $ pod setup" | "you are upgrading, first run: $ pod setup" | ||
# We don't want octokit to pull in faraday 0.8.0, as it prints a warning about | |||
# the `system_timer` gem being needed, which isn't available on 1.9.x | |||
# | |||
# Once faraday 0.8.1 is released this should be resolved: | |||
# https://github.com/technoweenie/faraday/pull/147 | |||
s.add_runtime_dependency 'faraday', '~> 0.7.6' | |||
s.add_runtime_dependency 'octokit', '<= 1.0.3' | |||
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.7.3' | ||
s.add_runtime_dependency 'octokit', '~> 1.3.0' | |||
s.add_runtime_dependency 'open4', '~> 1.3.0' | s.add_runtime_dependency 'open4', '~> 1.3.0' | ||
s.add_runtime_dependency 'rake', '~> 0.9.0' | s.add_runtime_dependency 'rake', '~> 0.9.0' | ||
s.add_runtime_dependency 'xcodeproj', '~> 0.1.0' # TODO update to RC1 for 0.6.0.rc1 | s.add_runtime_dependency 'xcodeproj', '~> 0.1.0' # TODO update to RC1 for 0.6.0.rc1 | ||
... | ... |
Please
register
or
sign in
to comment