-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
77 lines (71 loc) · 1.63 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
source 'https://rubygems.org'
gem 'active_model_serializers'
gem 'amazing_print'
gem 'bootsnap'
gem 'carrierwave', '>= 3.1.0.beta'
gem 'carrierwave-bombshelter'
gem 'devise'
gem 'enum_help'
gem 'fog-aws'
gem 'has_scope'
gem 'i18n_data'
gem 'importmap-rails'
gem 'inline_svg'
gem 'marginalia'
gem 'mini_magick'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection'
gem 'pagy'
gem 'pg'
gem 'pghero'
gem 'pg_query', '>= 0.9.0'
gem 'pg_search'
gem 'puma'
gem 'pundit'
gem 'rails'
gem 'rails-i18n'
gem 'rails_semantic_logger'
gem 'rolify'
gem 'scenic'
gem 'skylight'
gem 'sort_alphabetical'
gem 'sprockets-rails'
gem 'stimulus-rails'
gem 'tailwindcss-rails'
gem 'tiddle'
gem 'turbo-rails'
gem 'view_component'
group :production do
gem 'newrelic_rpm'
gem 'SyslogLogger'
end
group :development, :test do
gem 'bullet', '!= 6.0.0' # 6.0.0 seems to break with Turbolinks
gem 'rails-controller-testing'
gem 'rubocop', require: false
gem 'rubocop-performance'
gem 'rubocop-rails'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Rspec requires capybara > 2.1
gem 'capybara', '> 2.1'
gem 'database_cleaner-active_record'
gem 'factory_bot_rails'
gem 'faker'
gem 'json_matchers'
gem 'pundit-matchers'
gem 'rspec-rails'
gem 'selenium-webdriver'
gem 'shoulda-matchers'
gem 'smarter_csv'
gem 'webmock'
end
group :development do
gem 'annotate'
gem 'better_errors'
gem 'binding_of_caller'
gem 'dotenv-rails'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'pry'
gem 'spring'
end