Skip to content

Commit

Permalink
Lock json at 1.8.3 for ruby 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
antstorm committed Jul 11, 2016
1 parent eb968be commit 844bbbb
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Gemfile
@@ -1,7 +1,13 @@
source "https://rubygems.org"

gem "coveralls", :require => false
gem "json", :platform => :jruby
gem "pry", :require => false

# JSON gem no longer supports ruby < 2.0.0
if defined?(JRUBY_VERSION)
gem "json"
elsif RUBY_VERSION =~ /^1/
gem "json", "~> 1.8.3"
end

gemspec

0 comments on commit 844bbbb

Please sign in to comment.