-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (39 loc) · 1.05 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.0"
gem "rails", "~> 7.0.4", ">= 7.0.4.3"
gem "bootsnap", require: false
gem "email_validator", "~> 2.2.4"
gem "importmap-rails", "~> 1.1.6"
gem "money-rails", "~>1.15"
gem "pg", "~> 1.1"
gem "puma", "~> 5.0"
gem "redis", "~> 4.0"
gem "sprockets-rails", "~> 3.4.2"
gem "stimulus-rails", "~> 1.2.1"
gem "tailwindcss-rails", "~> 2.0.29"
gem "turbo-rails", "~> 1.4.0"
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem 'acts_as_paranoid'
gem 'paper_trail'
group :development, :test do
gem "debug", platforms: %i[mri mingw x64_mingw]
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
end
group :development do
gem "web-console"
end
group :test do
gem "capybara", "~> 3.39.1"
gem "factory_bot_rails"
gem "faker"
gem "rails-controller-testing"
gem "rspec-rails", "~> 4.0.2"
gem "selenium-webdriver", "~> 4.9.0"
gem "shoulda-matchers", "~> 5.3"
end
gem "sidekiq", "~> 7.1"
gem 'light-service'
gem 'csv'
gem 'net-http'