-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
50 lines (43 loc) · 1.18 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
source 'https://rubygems.org'
git_source(:github) { |repo| 'https://github.com/#{repo}.git' }
ruby '3.0.2'
gem 'graphql'
gem 'importmap-rails', '>= 0.3.4'
gem 'kaminari'
gem 'mysql2'
gem 'puma', '~> 5.0'
gem 'rails', '~> 7.0.0.alpha2'
gem 'redis', '~> 4.0'
gem 'sidekiq'
gem 'stimulus-rails', '>= 0.4.0'
# Use Tailwind CSS [https://github.com/rails/tailwindcss-rails]
gem 'tailwindcss-rails', '>= 0.4.3'
gem 'turbo-rails', '>= 0.7.11'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.4', require: false
group :development, :test do
gem 'debug', '>= 1.0.0', platforms: %i[mri mingw x64_mingw]
gem 'factory_bot_rails'
gem 'faker'
end
group :development do
gem 'flay'
gem 'guard'
gem 'guard-rspec', require: false
gem 'listen', '~> 3.3'
gem 'rack-mini-profiler', '~> 2.0'
gem 'spring'
gem 'web-console', '>= 4.1.0'
end
group :test do
gem 'capybara', '>= 3.26'
gem 'database_cleaner'
gem 'rails-controller-testing'
gem 'rspec_junit_formatter'
gem 'rspec-rails', '~> 4'
gem 'rspec-sidekiq'
gem 'selenium-webdriver'
gem 'shoulda-matchers', '~> 4'
gem 'webdrivers'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]