-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile.tt
134 lines (113 loc) · 2.56 KB
/
Gemfile.tt
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read("./.ruby-version").strip
### Application
gem "rails", "~> <%= Rails.version %>"
gem "puma"<%= gemfile_requirement("puma") %>
### DB
gem "pg"<%= gemfile_requirement("pg") %>
gem "pg_search"
gem "activerecord-postgres_enum"
gem "redis", "~> 4.0"
gem "discard"
gem "hypershield"
gem "online_migrations"
### Frontend
gem "active_link_to"
gem "better_html"
gem "cssbundling-rails"
gem "jsbundling-rails"
gem "sprockets-rails"
gem "stimulus-rails"
gem "turbo-rails"
gem "jbuilder"<%= gemfile_requirement("jbuilder") %>
### View helpers
gem "simple_form"
gem "local_time"
gem "gretel"
gem "view_component"
gem "lookbook"
### Authentication and Authorization
gem "devise"
gem "devise-pwned_password"
gem "omniauth"
gem "omniauth-rails_csrf_protection"
gem "omniauth-google-oauth2", "~> 1.1.1"
gem "rolify"
gem "pretender"
gem "pundit"
### SEO
gem "meta-tags"
gem "sitemap_generator"
gem "friendly_id"
### Analytics
gem "ahoy_email"
gem "ahoy_matey"
gem "blazer"
### Encryption and Security
gem "authtrail"
gem "rack-attack"
### Communications
gem "mailkick"
gem "noticed"
gem "postmark"
gem "postmark-rails"
### I18n
gem "devise-i18n"
gem "i18n-tasks"
gem "rails-i18n"
### Caching
gem "identity_cache"
gem "cityhash"
gem "dalli"
### Geolocation
gem "geocoder"
### Background Processing
gem "good_job"
### File management
gem "active_storage_validations"
gem "aws-sdk-s3", require: false
gem "image_processing"<%= gemfile_requirement("image_processing") %>
### Monitoring
gem "appsignal"
gem "rails_performance"
gem "pghero"
### Tools
gem "active_interaction", "~> 4.1"
gem "avatarly"
gem "bootsnap", require: false
gem "lefthook"
gem "rails_semantic_logger"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "pagy"
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "standard"
gem "bullet"
gem "capybara"
gem "capybara-screenshot"
gem "cypress-on-rails", "~> 1.0"
gem "database_cleaner"
gem "database_cleaner-active_record"
gem "factory_bot_rails"
gem "ffaker"
gem "pundit-matchers", "~> 1.7.0"
gem "rails-controller-testing"
gem "rspec-rails"
gem "shoulda-matchers"
gem "simplecov"
end
group :development do
gem "annotate"
gem "amazing_print"
gem "brakeman", require: false
gem "bundler-audit"
gem "erb_lint", require: false
gem "hotwire-livereload", "~> 1.1"
gem "letter_opener_web", "~> 2.0"
gem "pry-byebug"
gem "rails_best_practices"
gem "rails-erd"
gem "web-console"
gem "rack-mini-profiler"
end