-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
79 lines (73 loc) · 1.95 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'ahoy_matey'
gem 'geocoder'
# gem "maxminddb"
gem 'activeadmin', '~> 2.13'
gem 'active_storage_validations', '1.0.3'
# gem 'aws-sdk-s3', '1.119.2', require: false
gem 'activerecord-import', '1.4.1'
gem 'bootsnap', '1.16.0', require: false
gem 'cssbundling-rails', '1.1.2'
gem 'devise', '4.9.0'
gem 'down', '5.4.0'
gem 'draper', '4.0.2'
gem 'image_processing', '1.12.2'
gem 'jbuilder', '2.11.5'
gem 'jsbundling-rails', '1.1.1'
gem 'mini_magick', '4.12.0'
gem 'pagy', '6.0.2'
gem 'pg', '1.4.6'
gem 'pg_search', '2.3.6'
gem 'propshaft', '0.7.0'
gem 'puma', '6.1.1'
gem 'rails', '7.0.4.2'
gem 'rails-i18n', '7.0.6'
gem 'redis', '5.0.6'
gem 'simple_form', '5.2.0'
gem 'stimulus-rails', '1.2.1'
gem 'turbo-rails', '1.4.0'
gem 'haml-rails'
gem 'html2haml'
# gem 'friendly_id', '~> 5.4.0'
# gem 'bcrypt', '~> 3.1.7'
# gem 'kredis', '1.3.0.1'
# gem 'cancancan'
# gem 'omniauth'
# gem 'ransack'
# gem 'mobility'
group :development, :test do
gem 'awesome_print'
gem 'byebug'
gem 'bullet'
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'faker'
gem 'pry-rails'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-i18n', '~> 3.0', require: false
gem 'rubocop-performance', '~> 1.16', require: false
gem 'rubocop-rails', '~> 2.18', require: false
end
group :test do
# gem 'capybara'
gem 'rails-controller-testing'
gem 'shoulda-matchers', '~> 5.0'
# gem 'simplecov', require: false
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'bundler-audit'
gem 'memory_profiler'
gem 'rack-mini-profiler'
gem 'rails-erd'
gem 'spring'
gem 'stackprof'
gem 'web-console'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]