-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathGemfile
91 lines (73 loc) · 2.5 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
gem 'activerecord-postgres_enum', '~> 2.0'
# Use Puma as the app server
gem 'puma', '~> 5.6'
gem 'sass-rails', '~> 6.0'
gem 'uglifier', '>= 1.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use ActiveStorage variant
# gem 'mini_magick', '~> 4.8'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
gem 'devise', '~> 4.8'
gem 'jquery-rails'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
gem 'newrelic_rpm'
gem 'webpacker', '~> 5'
# Pagination helper
gem 'pagy', '~> 5.10'
# Simple authorization solution for Rails. All permissions are stored in a single location.
gem 'cancancan', '~> 3.4'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'pry-byebug'
gem 'rspec-rails', '~> 5.1'
gem "factory_bot_rails"
gem 'rubocop-rails'
gem 'faker'
gem 'shoulda-matchers'
gem 'capybara'
gem 'pry'
gem 'rails-controller-testing'
gem 'simplecov'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.8'
gem 'annotate', require: false
gem 'capistrano', '~> 3.17', require: false
gem 'capistrano-bundler', '~> 2.1', require: false
gem 'capistrano-rvm', '~> 0.1', require: false
gem 'capistrano-rails', '~> 1.6', require: false
gem 'capistrano3-puma', '~> 5.2', require: false
gem "brakeman"
end
# Report builder
gem 'reports_kit' # Replaced by blazer reporting - 1/24/21
# Dependency on Blazer version 2.5.0 due to app-specific overrides living in
# app/overrides that depend on the Blazer code at this version of the gem. Updating
# this gem will require review of our overridden classes with changes to code in the
# desired Blazer gem version.
gem 'blazer', '2.5.0'
# Excel and CSV support
gem 'creek'
gem 'iostreams'
# background processing
gem 'daemons'
gem 'delayed_job_active_record'
gem 'capistrano3-delayed-job', '~> 1.0'
# Auditing
gem 'paper_trail'
gem 'simple_form'