-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathGemfile
More file actions
100 lines (86 loc) · 2.46 KB
/
Gemfile
File metadata and controls
100 lines (86 loc) · 2.46 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '4.0.1'
gem 'active_storage_db'
gem 'acts_as_list'
gem 'addressable'
gem 'ahoy_matey'
gem 'ancestry'
gem 'bcrypt'
gem 'blazer'
gem 'bootsnap', require: false
gem 'colorize', require: false
gem 'devise'
gem 'devise_invitable'
gem 'faraday-retry'
gem 'foreman'
gem 'importmap-rails'
gem 'jbuilder'
gem 'listen'
gem 'local_time'
gem 'mini_racer'
gem 'mission_control-jobs' # git: 'https://github.com/rails/mission_control-jobs.git', branch: 'main'
gem 'mysql2'
gem 'oas_rails'
gem 'omniauth'
gem 'omniauth-keycloak'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection'
gem 'pagy'
gem 'postmark-rails'
gem 'prophet-rb'
gem 'puma'
gem 'rails'
gem 'rails-html-sanitizer'
gem 'rack-cors'
gem 'redcarpet'
gem 'responders'
gem 'ruby_llm'
gem 'rubyzip'
gem 'propshaft' # Modern asset pipeline for Rails 8
gem 'jsbundling-rails' # For bundling the Angular 1 app
gem 'scout_apm' # using on Heroku to look at memory issues
gem 'solid_cable'
gem 'solid_queue'
gem 'stimulus-rails'
gem 'thor'
gem 'turbo-rails'
gem 'vega'
group :development, :test do
gem 'benchmark'
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: [ :mri, :windows ], require: 'debug/prelude'
gem 'bullet'
gem 'memory_profiler'
gem 'dotenv' # Enable .env file outside of Docker based environment
gem 'minitest'
end
group :development do
gem 'claude-on-rails' # Dev acceleration tool
# Use console on exceptions pages [https://github.com/rails/web-console]
gem 'web-console'
gem 'annotaterb'
# this was commented out in the default build, so doing the same..
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem 'rack-mini-profiler'
gem 'database_consistency', require: false
# This is useful in working on performance issues, but otherwise puts
# a lot of noise in logs on startup
# gem 'debugbar'
gem 'derailed_benchmarks'
gem 'letter_opener'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-capybara', require: false
gem 'rails-erd'
end
group :test do
gem 'minitest-reporters'
gem 'simplecov', require: false
gem 'webmock'
gem 'rails-controller-testing' # bring back compatibility with rails 4 assigns in controller tests.
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem 'capybara'
gem 'selenium-webdriver'
end
gem 'rubocop-minitest', '~> 0.38.2'