1
0
Fork 0
mirror of https://github.com/jnunemaker/httparty synced 2023-03-27 23:23:07 -04:00
httparty/Gemfile
Nikita Misharin 54b7949b91
Normalize urls with URI adapter to allow International Domain Names support (#668)
* Normalize urls with URI adapter to allow idns support

* Fix normalization update specs
2019-08-30 17:27:59 +03:00

24 lines
366 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'
gem 'addressable'
end
group :development, :test do
gem 'pry'
end