-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (31 loc) · 962 Bytes
/
Copy pathGemfile
File metadata and controls
36 lines (31 loc) · 962 Bytes
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
30
31
32
33
34
35
36
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '~> 3.4.0'
# Application gems
gem 'faraday', '2.14.2'
gem 'faraday-retry', '~> 2.2'
gem 'json', '2.15.2.1'
gem 'nokogiri', '1.19.3'
gem 'puma', '~> 6.0'
gem 'rack', '3.2.6'
gem 'rackup', '~> 2.2'
gem 'sinatra', '~> 4.0'
gem 'sqlite3', '2.3.1'
# Development and test gems
group :development, :test do
gem 'brakeman', require: false
gem 'bundler-audit', require: false
gem 'pry', '~> 0.14'
gem 'rack-test', '~> 2.1'
gem 'rspec', '~> 3.12'
gem 'rubocop', '~> 1.81', '< 1.86'
gem 'rubocop-rspec', '~> 3.2'
gem 'simplecov', '~> 0.22'
gem 'vcr', '~> 6.1'
gem 'webmock', '~> 3.18'
end
group :development do
gem 'rake', '~> 13.0', require: false
# rubygems 0.14.0 still calls `Bundler.with_clean_env` (removed in Bundler 4). Git master has the fix; no new release.
gem 'rerun', git: 'https://github.com/alexch/rerun.git', ref: '4fbf9b25df4d03a5c9d2b8376ef89897e4a11b2b'
end