forked from rubyforgood/casa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
102 lines (94 loc) · 4.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
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.2.2"
gem "rails", "7.1.3.4"
gem "after_party" # post-deployment tasks
gem "amazing_print" # easier console reading
gem "authtrail" # Track Devise login activity
gem "azure-storage-blob", require: false
gem "blueprinter" # for JSON serialization
gem "bugsnag" # tracking errors in prod
gem "caxlsx", "~> 4.1" # excel spreadsheets - TODO can we remove this version restriction?
gem "caxlsx_rails", "~> 0.6.4" # excel spreadsheets - TODO can we remove this version restriction?
gem "cssbundling-rails", "~> 1.4" # compiles css
gem "delayed_job_active_record"
gem "devise" # for authentication
gem "devise_invitable"
gem "draper" # adds decorators for cleaner presentation logic
gem "faker" # creates realistic seed data, valuable for staging and demos
gem "filterrific" # filtering and sorting of models
gem "friendly_id", "~> 5.5.1" # allows us to use a slug instead of casa case ids in their URLs
gem "groupdate" # Group Data
gem "httparty" # for making HTTP network requests 🥳
gem "image_processing", "~> 1.12" # Set of higher-level helper methods for image processing.
gem "jbuilder" # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jsbundling-rails"
gem "lograge" # log less so heroku papertrail quits rate limiting our logs
gem "net-imap" # needed for ruby upgrade to 3.1.0 https://www.ruby-lang.org/en/news/2021/12/25/ruby-3-1-0-released/
gem "net-pop" # needed for ruby upgrade to 3.1.0 https://www.ruby-lang.org/en/news/2021/12/25/ruby-3-1-0-released/
gem "net-smtp", require: false # needed for ruby upgrade to 3.1.0 for some dang reason
gem "noticed" # Notifications
gem "oj" # faster JSON parsing 🍊
gem "paranoia" # For soft-deleting database objects
gem "pdf-forms" # filling in fund request PDFs with user input
gem "pg" # Use postgresql as the database for Active Record
gem "pretender"
gem "puma", "6.4.2" # 6.2.2 fails to install on m1 # Use Puma as the app server
gem "pundit" # for authorization management - based on user.role field
gem "rack-attack" # for blocking & throttling abusive requests
gem "rack-cors" # for allowing cross-origin resource sharing
gem "request_store"
gem "rexml" # pdf-forms needs this to deploy to heroku apparently
gem "rswag-api"
gem "rswag-ui"
gem "sablon" # Word document templating tool for Case Court Reports
gem "scout_apm"
gem "sprockets-rails" # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "stimulus-rails"
gem "strong_migrations"
gem "twilio-ruby" # twilio helper functions
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby] # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "view_component" # View components for reusability
gem "wicked"
# flipper for feature flag management
gem "flipper"
gem "flipper-active_record"
gem "flipper-ui"
group :development, :test do
gem "bullet" # Detect and fix N+1 queries
gem "byebug", platforms: %i[mri mingw x64_mingw] # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "dotenv-rails"
gem "erb_lint", require: false
gem "factory_bot_rails"
gem "parallel_tests"
gem "pry"
gem "pry-byebug"
gem "rspec_junit_formatter"
gem "rspec-rails"
gem "rswag-specs"
gem "shoulda-matchers"
gem "standard", "~> 1.39.0"
end
group :development do
gem "annotate" # for adding db field listings to models as comments
gem "bundler-audit" # for checking for security issues in gems
gem "letter_opener" # Opens emails in new tab for easier testing
gem "spring" # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem "spring-commands-rspec"
gem "traceroute" # for finding unused routes
gem "web-console", ">= 3.3.0" # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
end
group :test do
gem "brakeman" # security inspection
gem "capybara"
gem "capybara-screenshot"
gem "database_cleaner-active_record"
gem "docx"
gem "email_spec"
gem "rails-controller-testing"
gem "rake"
gem "selenium-webdriver"
gem "simplecov"
gem "webmock" # HTTP request stubber
end
# gem "pdf-reader", "~> 2.9"