[Gemfile] Use json 1.7.7 that can compile in ruby 2.2
Showing
... | @@ -11,7 +11,9 @@ source 'https://rubygems.org' | ... | @@ -11,7 +11,9 @@ source 'https://rubygems.org' |
gemspec | gemspec | ||
# This is the version that ships with OS X 10.10, so be sure we test against it. | # This is the version that ships with OS X 10.10, so be sure we test against it. | ||
gem 'json', '1.7.7' | # At the same time, the 1.7.7 version won't install cleanly on Ruby > 2.2, | ||
# so we use a fork that makes a trivial change to a macro invocation. | |||
gem 'json', :git => 'https://github.com/segiddins/json.git', :branch => 'seg-1.7.7-ruby-2.2' | |||
group :development do | group :development do | ||
cp_gem 'claide', 'CLAide' | cp_gem 'claide', 'CLAide' | ||
... | ... |
Please
register
or
sign in
to comment