-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (39 loc) · 935 Bytes
/
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.4.1'
# Back
gem 'rails', '~> 7.2.0'
gem 'rails-i18n', '~> 7.0'
gem 'pg', '~> 1.1'
gem 'puma', '~> 6.0'
gem 'delayed_job_active_record'
gem 'delayed_job_web'
gem 'slack-incoming-webhooks'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'ostruct', '~> 0.6.0'
# Front
gem 'sprockets-rails', '~> 3.5'
gem 'sassc-rails'
gem 'kamifusen'
gem 'jbuilder'
gem 'kaminari'
gem 'kaminari-i18n'
gem 'chartkick'
gem 'groupdate'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'web-console', '>= 4.1.0'
gem 'rack-mini-profiler', '~> 2.0'
gem 'listen', '~> 3.3'
gem 'spring'
gem 'annotate'
gem 'figaro'
end
group :test do
gem 'capybara', '>= 3.26'
gem 'selenium-webdriver'
gem 'webdrivers'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]