-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGemfile
63 lines (54 loc) · 1.18 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
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 6.1.7.4'
gem 'pg'
gem 'puma', '>= 6.3.1'
gem 'sass-rails'
gem 'uglifier'
gem 'bootsnap'
gem 'coffee-rails'
gem 'turbolinks'
gem 'jbuilder'
gem 'haml'
gem 'bootstrap-sass'
gem 'simple_form'
gem 'active_decorator'
gem 'ransack'
gem 'kaminari'
gem 'figaro'
gem 'scenic'
gem 'jquery-rails'
gem 'cocoon'
gem 'wicked_pdf'
gem 'wkhtmltopdf-binary', '0.12.3.1' # 0.12.4.0 shrinks text
gem 'pdf-toolkit'
gem 'rack'
gem 'nokogiri'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'capybara', '~> 2.13'
gem 'selenium-webdriver'
gem 'taiwanese_id_validator'
gem 'factory_bot_rails', '~> 4.0'
gem 'faker'
gem 'rubocop-rails'
gem 'time_difference'
gem 'timecop'
gem 'mocha'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'bullet'
gem 'rb-readline'
gem 'irb'
end
group :test do
gem 'database_rewinder'
gem 'simplecov', require: false
end