Skip to content

Commit 50fb076

Browse files
committed
Lock rest-client to ~> 1.6.0 on Ruby 1.8.7
1 parent b5f8c41 commit 50fb076

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

Gemfile

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
1-
source "https://rubygems.org"
1+
source 'https://rubygems.org'
22

3-
gem "rake", ">= 0.9"
4-
gem "rdoc", ">= 3.9"
3+
gem 'rake', '>= 0.9'
4+
gem 'rdoc', '>= 3.9'
55

66
group :development do
7-
gem "guard-rspec"
8-
gem "pry"
7+
gem 'guard-rspec'
8+
gem 'pry'
99
platforms :ruby_19, :ruby_20 do
10-
gem "pry-debugger"
11-
gem "pry-stack_explorer"
10+
gem 'pry-debugger'
11+
gem 'pry-stack_explorer'
1212
end
1313
end
1414

1515
group :test do
16-
gem "childlabor"
17-
gem "coveralls", ">= 0.5.7", :require => false
18-
# mime-types is required indirectly by coveralls
19-
# needs to be < 2.0 to work with Ruby 1.8.7
20-
gem "mime-types", "~> 1.25", :platforms => [:jruby, :ruby_18]
21-
gem "fakeweb", ">= 1.3"
22-
gem "rspec", ">= 3"
23-
gem "rspec-mocks", ">= 3"
24-
gem "rubocop", ">= 0.19", :platforms => [:ruby_19, :ruby_20, :ruby_21]
25-
gem "simplecov", :require => false
16+
gem 'childlabor'
17+
gem 'coveralls', '>= 0.5.7', :require => false
18+
gem 'fakeweb', '>= 1.3'
19+
gem 'mime-types', '~> 1.25', :platforms => [:jruby, :ruby_18]
20+
gem 'rspec', '>= 3'
21+
gem 'rspec-mocks', '>= 3'
22+
gem 'rubocop', '>= 0.19', :platforms => [:ruby_19, :ruby_20, :ruby_21]
23+
gem 'simplecov', :require => false
24+
gem 'rest-client', '~> 1.6.0', :platforms => [:jruby, :ruby_18]
2625
end
2726

2827
gemspec

0 commit comments

Comments
 (0)