-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
51 lines (43 loc) · 1.11 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.3'
gem 'rails', '~> 7.0.0'
gem "sprockets-rails"
gem 'jquery-rails'
gem 'dotenv-rails', groups: [:development, :test]
gem 'stripe'
gem "money-rails"
gem 'friendly_id', '~> 5.4.0'
gem 'pg'
gem 'puma'
gem "importmap-rails"
gem "turbo-rails", '~> 1.0.0'
gem "stimulus-rails"
gem 'jbuilder'
gem 'material_icons'
gem 'mini_magick'
gem 'image_processing', '~> 1.2'
gem "aws-sdk-s3", require: false
gem 'bootsnap', require: false
gem 'devise'
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 4.0"
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'pry'
gem 'rspec'
end
group :development do
gem 'web-console', '>= 4.1.0'
gem 'rack-mini-profiler', '~> 2.0'
gem 'spring'
end
group :test do
gem 'capybara', '>= 3.26'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "dockerfile-rails", ">= 1.5", :group => :development