-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
51 lines (44 loc) · 1020 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.7.6'
gem 'carrierwave', '~> 2.0'
gem 'figaro'
gem 'multi_json'
gem 'pg'
gem 'prawn'
gem 'prawn-qrcode', '~> 0.5.2'
gem 'prawn-table'
gem 'puma'
gem 'rails', '~> 6.1.7'
gem 'redis'
gem 'representable'
gem 'savon'
group :development, :test do
gem 'pry'
end
group :development do
gem 'listen'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'factory_bot_rails'
gem 'faker'
gem 'rspec-rails'
gem 'shoulda-matchers', '4.0.0.rc1'
gem 'should_not'
gem 'simplecov', require: false
gem 'simplecov-lcov', require: false
gem 'webmock'
end
group :production do
gem 'capistrano', require: false
gem 'capistrano3-puma', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-rbenv', require: false
gem 'capistrano-systemd'
gem 'rack-cache', require: 'rack/cache'
end