-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (44 loc) · 1.07 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'
ruby '3.0.3'
gem 'rails', '~> 7.0.0'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'bounded_context'
gem 'dry-monads'
gem 'dry-struct'
gem 'dry-types'
gem 'faker'
gem 'pg', '~> 1.1.3'
gem 'puma', '~> 5.0'
gem 'rails_event_store', '~> 2.3.0'
gem 'redis'
gem 'ruby_event_store-sidekiq_scheduler'
gem 'sass-rails', '>= 6'
gem 'sprockets-rails'
gem 'sidekiq'
gem 'tailwindcss-rails', '~> 0.4.3'
gem 'turbolinks', '~> 5'
gem 'tzinfo-data', platforms: %i(mingw mswin x64_mingw jruby)
gem 'shakapacker', '~> 7.0'
group :development, :test do
gem 'byebug', platforms: %i(mri mingw x64_mingw)
gem 'pry-byebug'
gem 'pry-doc'
gem 'pry-rails'
end
group :development, :test do
gem 'rubocop', require: false
gem 'rubocop-performance', '~> 1.11'
gem 'rubocop-rails', '~> 2.9', require: false
gem 'rubocop-rspec', '~> 2.1', require: false
end
group :development do
gem 'listen', '~> 3.3'
gem 'rack-mini-profiler', '~> 2.0'
gem 'spring'
gem 'web-console', '>= 4.1.0'
end
group :test do
gem 'rexml'
gem 'rspec-rails'
gem 'ruby_event_store-rspec'
end