Add `json` and `octokit` gems.
Wanted to add `system_timer` but it doesn't build on 1.9.3. Closes #278. At least for now.
Showing
... | @@ -2,10 +2,8 @@ source "http://rubygems.org" | ... | @@ -2,10 +2,8 @@ source "http://rubygems.org" |
gem "colored" | gem "colored" | ||
gem "escape" | gem "escape" | ||
gem "open4" | |||
# TODO why are these not in the gemspec yet? | |||
gem "json" | gem "json" | ||
gem "open4" | |||
gem "octokit" | gem "octokit" | ||
group :development do | group :development do | ||
... | ... |
... | @@ -28,11 +28,14 @@ Gem::Specification.new do |s| | ... | @@ -28,11 +28,14 @@ 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" | ||
s.add_runtime_dependency 'xcodeproj', '~> 0.1.0' | 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 'open4', '~> 1.3.0' | s.add_runtime_dependency 'octokit', '~> 1.3.0' | ||
s.add_runtime_dependency 'rake', '~> 0.9.0' | s.add_runtime_dependency 'open4', '~> 1.3.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_development_dependency 'bacon', '~> 1.1' | s.add_development_dependency 'bacon', '~> 1.1' | ||
## Make sure you can build the gem on older versions of RubyGems too: | ## Make sure you can build the gem on older versions of RubyGems too: | ||
... | ... |
Please
register
or
sign in
to comment