Skip to content

Commit 6f4631d

Browse files
committed
tins 1.7 doesn't support Ruby < 2
1 parent 014476f commit 6f4631d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ source 'https://rubygems.org'
33
gem 'rake', '< 11'
44
gem 'rdoc', '>= 3.9'
55

6-
gem 'json', '< 2' # This is to support Ruby 1.8 and 1.9
7-
86
group :development do
97
gem 'guard-rspec'
108
gem 'pry'
@@ -20,6 +18,8 @@ end
2018
group :test do
2119
gem 'childlabor'
2220
gem 'coveralls', '>= 0.5.7'
21+
gem 'json', '< 2' # This is to support Ruby 1.8 and 1.9
22+
gem 'tins', '< 1.7' # This is to support Ruby 1.8 and 1.9
2323
gem 'addressable', '~> 2.3.6', :platforms => [:ruby_18]
2424
gem 'webmock', '>= 1.20'
2525
gem 'mime-types', '~> 1.25', :platforms => [:jruby, :ruby_18]

0 commit comments

Comments
 (0)