-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
70 lines (61 loc) · 1.69 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
66
67
68
69
70
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.0"
gem "base64"
gem "devise"
gem "devise-i18n"
gem "discard", "~> 1.2"
gem "i18n-js"
gem "jbuilder", "~> 2.7"
gem "kaminari" # Paginator
gem "kaminari-i18n" # Paginator
gem "net-imap"
gem "net-pop"
gem "net-smtp"
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 5.0" # Use Puma as the app server
gem "rails", "~> 6.1"
gem "rails-i18n"
gem "ransack" # Search
gem "react-rails"
gem "rolify" # User roles
gem "rollbar" # Error reporting
gem "sass-rails", ">= 6"
gem "simple_form"
gem "turbolinks", "~> 5"
gem "wdm", ">= 0.1.0", platforms: %i[mingw mswin x64_mingw]
gem "webpacker", "~> 5.0"
gem "wicked_pdf", "~> 2.1.0"
gem "wkhtmltopdf-binary", "~> 0.12.6.0"
## Utilities
gem "deep_cloneable", "~> 3.0.0"
gem "font-awesome-sass", "~> 5.15.1"
gem "httparty"
gem "roo", "~> 2.8.0" # Excel imports
gem "roo-xls" # .xls support https://github.com/roo-rb/roo-xls READ LICENSE
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
group :development, :test do
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "cypress-on-rails", "~> 1.0"
gem "database_cleaner-active_record"
gem "factory_bot_rails"
gem "pry-byebug"
gem "rspec-rails", "~> 4.0.1"
end
group :test do
gem "shoulda-matchers", "~> 4.0"
gem "vcr"
gem "webmock"
end
group :development do
gem "letter_opener_web"
gem "listen", "~> 3.2"
gem "web-console", ">= 3.3.0"
gem "rubocop"
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rspec"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]