-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (39 loc) · 1.16 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '~> 7.0.2.2'
gem "pg", "~> 1.1"
gem "puma", "~> 5.0"
gem 'jbuilder'
gem 'bootsnap', require: false
gem "administrate", '~> 0.16'
gem 'administrate-field-active_storage'
gem 'stripe'
gem 'image_processing', '~> 1.2'
gem 'devise'
gem 'mailcatcher'
gem "redis", "~> 4.0"
gem "sprockets-rails"
gem "turbo-rails"
gem "jsbundling-rails", "~> 1.0"
gem "cssbundling-rails", "~> 1.0"
gem "stimulus-rails", "~> 1.0"
group :development, :test do
gem 'dotenv-rails'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "debug", platforms: %i[ mri mingw x64_mingw ]
gem 'rspec-rails', '~> 5.0.0'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'rails_admin', '~> 3.0'
gem "sassc-rails"
gem "cancancan"