mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-04 00:02:03 -04:00
* Fixes rubocop Style/HashSyntax issues. * Fixes rubocop Style/HashSyntax issues in comments as well.
34 lines
865 B
Ruby
34 lines
865 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
ruby RUBY_VERSION
|
|
|
|
gem 'ffi-ncurses', '~> 0.3', platforms: :jruby
|
|
gem 'jruby-openssl', '~> 0.8.8', platforms: :jruby
|
|
gem 'rake'
|
|
|
|
group :development, :test do
|
|
gem 'pry'
|
|
end
|
|
|
|
group :test do
|
|
gem 'coveralls', require: false
|
|
gem 'em-http-request', '>= 1.1', require: 'em-http'
|
|
gem 'em-synchrony', '>= 1.0.3', require: ['em-synchrony', 'em-synchrony/em-http']
|
|
gem 'excon', '>= 0.27.4'
|
|
gem 'httpclient', '>= 2.2'
|
|
gem 'minitest', '>= 5.0.5'
|
|
gem 'net-http-persistent'
|
|
gem 'patron', '>= 0.4.2', platforms: :ruby
|
|
gem 'rack-test', '>= 0.6', require: 'rack/test'
|
|
gem 'rspec', '~> 3.7'
|
|
gem 'rubocop', '~> 0.65.0'
|
|
gem 'simplecov'
|
|
gem 'sinatra', '~> 1.3'
|
|
gem 'typhoeus', '~> 1.3', git: 'https://github.com/typhoeus/typhoeus.git', require: 'typhoeus'
|
|
gem 'webmock', '~> 3.4'
|
|
end
|
|
|
|
gemspec
|