forked from DARIAEngineering/dcaf_case_management
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
108 lines (89 loc) · 3.16 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
source 'https://rubygems.org'
ruby '2.7.2'
# Standard rails
gem 'rails', '~> 6.0.3.6'
gem 'puma', '~> 5.3' # roar
gem 'sdoc', '~> 2.2.0', group: :doc
gem 'nokogiri', '>= 1.11.1'
gem 'tzinfo-data', require: false
gem 'bootsnap', '>= 1.4.2', require: false
# Asset pipeline
gem 'webpacker', '~> 5.4'
gem 'sass-rails', '>= 6'
gem 'bootstrap', '~> 4.5.0'
gem 'bootstrap_form', '~> 4.5.0'
gem 'coffee-rails', '~> 5.0.0'
gem 'jquery-rails', '~> 4.4.0'
gem 'jquery-ui-rails'
# Our database is postgres
gem 'pg', '~> 1.2'
gem 'paper_trail', '~> 12.0'
gem 'activerecord-session_store'
# Our authentication library is devise, with oauth2 for google signin
gem 'devise', '~> 4.8'
gem 'omniauth-google-oauth2', '~> 1.0.0'
gem "omniauth-rails_csrf_protection", '~> 1.0'
# Strong Password for user password validation for folks not on oauth
gem 'strong_password', '~> 0.0.9'
# We report errors with sentry
gem 'sentry-raven'
# Security libraries
gem 'rack-attack', '~> 5.4.1'
# For pagination
gem 'kaminari', '~> 1.2'
# Specific useful stuff
gem 'render_async', '~> 2.1' # load slow partials asynchronously
gem 'prawn' # pledge pdf generation
gem 'geokit' # clinic_finder service lat-lng
gem 'state_geo_tools' # state list
# Stuff that we're targeting removal of
gem 'figaro' # we handle secrets differently now
gem 'js-routes' # Not sure if this is used anymore
# Stuff we're hardsetting because of security concerns
gem 'loofah', '>= 2.3.1'
gem 'rails-html-sanitizer', '>= 1.0.4'
group :development do
gem 'i18n-tasks', '~> 0.9.29' # check and clean i18n keys
gem 'rails-i18n', '~> 6.0' # dependency of i18n-tasks, hardset to a rails-6-compat version
gem 'shog' # makes rails s output color!
gem 'listen', '>= 3.0.5', '< 3.7' # used by systemtests, hardset rails 6 compat
gem 'rubocop', require: false # our code style / linting system
gem 'rubocop-rails', require: false
# Security scanners that also run in CI. They run with bundle exec.
gem 'ruby_audit', require: false #
gem 'bundler-audit', require: false
end
group :development, :test do
gem 'pry' # pop `pry` in controller code to open up an IRB terminal
gem 'byebug' # pop `byebug` in view code for open up an IRB terminal
gem 'knapsack' # lets us split up our tets so they run faster in CI
gem 'dotenv-rails' #used to set up our db ENV values
end
group :test do
# Useful minitest tools
gem 'minitest-spec-rails'
gem 'minitest-ci'
gem 'factory_bot_rails'
gem 'database_cleaner'
gem 'faker'
gem 'timecop'
# Systemtest related tools
gem 'capybara'
gem 'selenium-webdriver'
gem 'capybara-screenshot'
gem 'launchy' # open up capybara screenshots automatically with `save_and_open_screenshot`
gem 'webdrivers'
# Test coverage related libraries
gem 'simplecov', require: false
gem 'codecov', require: false
# Specifics
gem 'shoulda-context'
gem 'minitest-optional_retry' # retry flaky tests 3 times
gem 'mini_backtrace' # settle down minitest output
gem 'pdf-inspector', require: 'pdf/inspector' # test pdf contents
gem 'minitest-stub-const'
gem 'rack-test', '>= 0.6.3', require: 'rack/test' # needed to test rack-attack
end
group :production do
gem 'sqreen' # an active security monitoring platform
end