Skip to content

Commit 10b3bf9

Browse files
committed
Pin json to resolve failures relating to ruby 2.x
1 parent 6876d1e commit 10b3bf9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
source 'https://rubygems.org'
44

55
gem 'rake', require: false
6-
76
# SDK feature dependencies
87
gem 'aws-crt' if ENV['CRT']
98
gem 'http-2'
@@ -15,7 +14,7 @@ if defined?(JRUBY_VERSION)
1514
end
1615

1716
# protocol parsers
18-
gem 'json', '2.7.5' if defined?(JRUBY_VERSION) # temporary due to json 2.8.0 release
17+
gem 'json', '2.7.5' if RUBY_VERSION < '3.0.0' # temporary due to json 2.8.0 release
1918
gem 'nokogiri', '>= 1.6.8.1'
2019
gem 'oga'
2120
gem 'rexml'

0 commit comments

Comments
 (0)