File: Gemfile

package info (click to toggle)
ruby-faraday 2.14.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,008 kB
  • sloc: ruby: 6,509; sh: 10; makefile: 8
file content (29 lines) | stat: -rw-r--r-- 724 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

source 'https://rubygems.org'

# Even though we don't officially support JRuby, this dependency makes Faraday
# compatible with it, so we're leaving it in for jruby users to use it.
gem 'jruby-openssl', '~> 0.11.0', platforms: :jruby

group :development, :test do
  gem 'bake-test-external'
  gem 'coveralls_reborn', require: false
  gem 'pry'
  gem 'rack', '~> 3.0'
  gem 'rake'
  gem 'rspec', '~> 3.7'
  gem 'rspec_junit_formatter', '~> 0.4'
  gem 'simplecov'
  gem 'webmock', '~> 3.4'
end

group :development, :lint do
  gem 'racc', '~> 1.7' # for RuboCop, on Ruby 3.3
  gem 'rubocop'
  gem 'rubocop-packaging', '~> 0.5'
  gem 'rubocop-performance', '~> 1.0'
  gem 'yard-junk'
end

gemspec