-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
53 lines (46 loc) · 1.39 KB
/
Gemfile
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'chunky_png', '~> 1.3', '>= 1.3.5'
gem 'config', '~> 5.5'
gem 'digest', '~> 3.1', '>= 3.1.1'
gem 'faraday', '~> 2.12'
gem 'ipaddr', '~> 1.2'
gem 'json-schema', '~> 5.1'
gem 'puma', '~> 6.4'
gem 'rainbow', '~> 3.1', '>= 3.1.1'
gem 'rake', '~> 13.2', '>= 13.2.1'
gem 'rqrcode', '~> 2.0'
gem 'ruby-units', '~> 4.1'
gem 'rubyzip', '~> 2.3', '>= 2.3.2'
gem 'simple_monads', '~> 1.0'
gem 'sinatra', '~> 4.1'
gem 'sinatra-contrib', '~> 4.1'
# NOTE: These gems are here and not in dev mode, for access to the console
gem 'byebug', '~> 11.1', '>= 11.1.3'
gem 'pry-byebug', '~> 3.10', '>= 3.10.1'
group :development do
gem 'dotenv', '~> 3.1'
gem 'rubocop', '~> 1.69'
gem 'rubocop-rake', '~> 0.6.0'
gem 'rubocop-rspec', '~> 3.2'
gem 'super_diff', '~> 0.13.0'
end
group :test do
gem 'rack-test', '~> 2.1'
gem 'rspec', '~> 3.13'
gem 'simplecov', require: false
gem 'timecop', '~> 0.9.10'
gem 'webmock', '~> 3.24'
end
# NOTE: An extremely platform-dependent gem that is needed only for development.
# So I put it in a separate group.
group :rerun do
gem 'rerun', '~> 0.14.0'
end
# NOTE: These 2 gems are essentially needed exclusively for debugging in real use.
# The average user does not need them.
# And they start working only if there is a special setting
group :production do
gem 'sentry-ruby', '~> 5.21'
gem 'stackprof', '~> 0.2.26'
end