-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
59 lines (53 loc) · 1.3 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.1'
gem 'actionpack', '>= 7.0.4.1'
gem 'actionview', '>= 7.0.4.1'
gem 'activerecord', '>= 7.0.4.1'
gem 'activesupport', '>= 7.0.4.1'
gem 'bootsnap', '>= 1.4.2'
gem 'chartkick', '>= 4.2.1'
gem 'devise'
gem 'devise-pwned_password'
gem 'faker'
gem 'groupdate'
gem 'hotwire-rails', '>= 0.1.3'
gem 'importmap-rails'
gem 'jbuilder', '>= 2.7'
gem 'money-rails', '~> 1.12'
gem 'nokogiri', '>= 1.13.10'
gem 'puma', '>= 5.6.4'
gem 'rails', '>= 7.0.4'
gem 'sprockets-rails'
gem 'sqlite3'
gem 'tailwindcss-rails', '~> 2.3'
gem 'turbo-rails', '>= 2.0.5'
gem 'tzinfo-data'
group :development, :test do
gem 'erb_lint', require: false
gem 'factory_bot_rails'
gem 'pry', '>= 0.12.2'
gem 'rails-controller-testing'
gem 'rspec-rails', '>= 6.1'
gem 'rubocop', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
end
group :development do
gem 'brakeman'
gem 'bullet'
gem 'debugbar'
gem 'listen'
gem 'rails_live_reload'
gem 'seed_dump'
gem 'spring'
gem 'spring-watcher-listen'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'capybara', '>= 2.15'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'webdrivers'
end