mirror of
https://github.com/jnunemaker/httparty
synced 2023-03-27 23:23:07 -04:00
647dbb69a5
Fakeweb hasn't had a release in years and sadly no longer appears to be maintained. As a result tests are failing on more modern Rubies (2.4.x). This change replaces Fakeweb with Webmock, which is actively maintained.
19 lines
300 B
Ruby
19 lines
300 B
Ruby
source 'https://rubygems.org'
|
|
gemspec
|
|
|
|
gem 'rake'
|
|
gem 'mongrel', '1.2.0.pre2'
|
|
|
|
group :development do
|
|
gem 'guard'
|
|
gem 'guard-rspec'
|
|
gem 'guard-bundler'
|
|
end
|
|
|
|
group :test do
|
|
gem 'rspec', '~> 3.4'
|
|
gem 'simplecov', require: false
|
|
gem 'aruba'
|
|
gem 'cucumber', '~> 2.3'
|
|
gem 'webmock'
|
|
end
|