summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColby Swandale <colby@taplaboratories.com>2016-11-24 09:08:20 +1100
committerColby Swandale <colby@taplaboratories.com>2016-11-24 09:08:20 +1100
commit056507636228024f931a471bff2ef83ee95295b9 (patch)
tree5d04de4127ffe325ec03a8e961c49e91bca8b51e
parent7ec3768626e61334af7566f9c2f5f7d75ffe4d84 (diff)
downloadbundler-056507636228024f931a471bff2ef83ee95295b9.tar.gz
specify older version of the JSON gem to meet requirements for it to be installed on ruby < 2.0
-rw-r--r--spec/runtime/inline_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/runtime/inline_spec.rb b/spec/runtime/inline_spec.rb
index 6dc127edd7..f01fd77673 100644
--- a/spec/runtime/inline_spec.rb
+++ b/spec/runtime/inline_spec.rb
@@ -219,7 +219,7 @@ describe "bundler/inline#gemfile" do
script <<-RUBY
gemfile do
source "https://rubygems.org"
- gem "json", "~> 2.0.2"
+ gem "json", "~> 1.8.3"
end
puts JSON::VERSION
RUBY