mirror of
https://github.com/rest-client/rest-client.git
synced 2022-11-09 13:49:40 -05:00
![Larry Gilbert](/assets/img/avatar_default.png)
The Travis CI docs say that gemfiles should be put in a subdirectory, and the examples they single out both have at least one gemfile in a subdirectory, so...
20 lines
589 B
Text
20 lines
589 B
Text
# This gemfile is used to help verify that the minimum versions of gems
|
|
# specified in the requirements really do work. So avoid using '>=', '~>', etc.
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'mime-types', '1.16'
|
|
gem 'netrc', '0.7.7'
|
|
gem 'rdoc', '2.4.2'
|
|
|
|
group :test, :development do
|
|
gem 'rake', '0.9.2.2'
|
|
|
|
# WebMock 1.7.0 is the earliest version that:
|
|
# * supports the class methods 'enable!' and 'disable!'
|
|
# * doesn't have trouble loading rspec-expectations
|
|
gem 'webmock', '1.7.0'
|
|
|
|
# RSpec 2.8.0 is the earliest version that supports random ordering
|
|
gem 'rspec', '2.8.0'
|
|
end
|