-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
115 lines (89 loc) · 2.21 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
109
110
111
112
113
114
115
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.4"
gem "rails", "~> 7.1.3"
# Database
gem "pg", "~> 1.5"
# Server
gem "puma", "~> 6.4"
# Authentication and Authorization
gem "devise"
gem "cancancan"
# Front stuff
gem "cssbundling-rails"
gem "jsbundling-rails"
gem "sassc-rails"
gem "sprockets-rails"
gem "stimulus-rails"
gem "turbo-rails"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 5.0"
# reCAPTCHA
gem "recaptcha"
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"
# PDF generation
gem "prawn"
gem "prawn-table"
# Misc
gem "bootsnap", require: false
gem "rack-cors"
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
# activeadmin
gem "activeadmin"
# ActiveStorage and Image processing
gem "aws-sdk-s3"
gem "image_processing"
# ViewComponent
gem "view_component"
gem "lookbook" # Need to be after the `view_component` gem
# Countries
gem "countries"
gem "country_select"
# Edit in place
gem "best_in_place", git: "https://github.com/mmotherwell/best_in_place"
# Exceptions notification
gem "honeybadger"
# HTTP requests
gem "httparty"
# Markdown
gem "kramdown"
# Required for Ruby 3.1
gem "matrix"
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
gem "dotenv-rails"
gem "erb_lint"
gem "factory_bot_rails"
gem "faker"
gem "libyear-bundler"
gem "parallel_tests"
gem "rspec-rails"
gem "rubocop-rails_config", require: false
gem "rubocop-rspec", require: false
gem "standard"
end
group :development do
gem "active_record_doctor"
gem "brakeman"
gem "i18n-tasks"
gem "letter_opener_web"
gem "pg_query"
gem "prosopite"
gem "solargraph"
gem "rack-mini-profiler"
gem "ruby-lsp"
gem "web-console"
end
group :test do
gem "capybara"
gem "rails-controller-testing"
gem "selenium-webdriver"
gem "shoulda-matchers"
gem "simplecov", require: false
gem "webmock"
end