mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
5d0ba170c0
Versions greater than 4.0 dropped 1.8.7 support but it appears the Travis build environment just updated so this appeared.
16 lines
410 B
Groff
16 lines
410 B
Groff
source "https://rubygems.org"
|
|
|
|
gem 'activesupport', '~> 3.2'
|
|
gem 'nokogiri', '~>1.5.11'
|
|
gem 'mime-types', '~>1.16'
|
|
gem 'rest-client', '~> 1.6.7'
|
|
|
|
group :development, :test do
|
|
# This is here because gemspec doesn't support require: false
|
|
gem 'coveralls', :require => false
|
|
gem "netrc", :require => false
|
|
gem "octokit", '~> 2.7.2', :require => false
|
|
gem 'rake', '~> 10.1.0'
|
|
end
|
|
|
|
gemspec :path => "../"
|