Pin json to v1 for Ruby versions < 2

json v2 requires at least ruby v2.0.0
This commit is contained in:
Garrett Honeycutt 2016-07-04 16:22:34 -04:00
parent 697a512898
commit 097563fff1

View File

@ -31,3 +31,6 @@ if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
gem 'rake', '~> 10.0' gem 'rake', '~> 10.0'
end end
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '2.0'
gem 'json', '~> 1.0'
end