forked from restforce/restforce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
22 lines (19 loc) · 657 Bytes
/
Gemfile
File metadata and controls
22 lines (19 loc) · 657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
faraday_version = ENV.fetch('FARADAY_VERSION', '~> 2.7.3')
# Enable us to explicitly pick a Faraday version when running tests
gem 'faraday', faraday_version
gem 'faraday-typhoeus', '~> 1.0.0' unless faraday_version.start_with?("~> 1")
gem 'faye' unless RUBY_PLATFORM == 'java'
gem 'guard-rspec'
gem 'guard-rubocop'
gem 'jruby-openssl', platforms: :jruby
gem 'rake'
gem 'rspec', '~> 3.12.0'
gem 'rspec-collection_matchers', '~> 1.2.0'
gem 'rspec-its', '~> 1.3.0'
gem 'rspec_junit_formatter', '~> 0.6.0'
gem 'rubocop', '~> 1.52.1'
gem 'simplecov', '~> 0.22.0'
gem 'webmock', '~> 3.18.1'