Permalink
Browse files

Relax JSON dependency to allow 2.x

  • Loading branch information...
1 parent 3c2b172 commit b47a3bd33d70f90ea2339ec2cef2c7427a6cb825 @sferik sferik committed Jul 2, 2016
Showing with 4 additions and 1 deletion.
  1. +3 −0 Gemfile
  2. +1 −1 simplecov.gemspec
View
@@ -15,6 +15,9 @@ group :test do
gem "activesupport", "~> 3.2.21"
gem "i18n", "~> 0.6.11"
end
+ platform :ruby_18, :ruby_19 do
+ gem "json", "~> 1.8"
+ end
platform :jruby, :ruby_19, :ruby_20, :ruby_21, :ruby_22, :ruby_23 do
gem "aruba", "~> 0.7.4"
gem "capybara", "~> 2.4"
View
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
gem.required_ruby_version = ">= 1.8.7"
- gem.add_dependency "json", "~> 1.8"
+ gem.add_dependency "json", ">= 1.8", "< 3"
gem.add_dependency "simplecov-html", "~> 0.10.0"
gem.add_dependency "docile", "~> 1.1.0"

0 comments on commit b47a3bd

Please sign in to comment.