-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
65 lines (59 loc) · 1.28 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
54
55
56
57
58
59
60
61
62
63
64
65
# frozen_string_literal: true
source 'https://rubygems.org'
ruby file: '.ruby-version'
gem 'bootstrap_form'
gem 'business_time'
gem 'cssbundling-rails'
gem 'exception_notification'
gem 'haml'
gem 'haml-rails'
gem 'irb'
gem 'kaminari'
gem 'mysql2'
gem 'octokit'
gem 'prawn'
gem 'prawn-table'
gem 'puma'
gem 'rails', '~> 7.0.8'
gem 'rake'
gem 'sprockets-rails'
gem 'turbolinks'
group :development, :test do
gem 'debug'
gem 'factory_bot_rails'
gem 'faker'
gem 'pdf-inspector', require: 'pdf/inspector'
gem 'simplecov', require: false
end
group :test do
gem 'capybara'
gem 'rack_session_access'
gem 'rspec-html-matchers'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'timecop'
end
group :development do
gem 'bcrypt_pbkdf', require: false
gem 'capistrano', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-passenger', require: false
gem 'capistrano-pending', require: false
gem 'capistrano-rails', require: false
gem 'ed25519', require: false
gem 'haml-lint'
gem 'listen'
gem 'rubocop'
gem 'rubocop-capybara'
gem 'rubocop-factory_bot'
gem 'rubocop-rails'
gem 'rubocop-rake'
gem 'rubocop-rspec'
gem 'rubocop-rspec_rails'
gem 'spring'
gem 'spring-watcher-listen'
gem 'web-console'
end
group :production do
gem 'uglifier'
end