-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
42 lines (36 loc) · 1.26 KB
/
Gemfile
File metadata and controls
42 lines (36 loc) · 1.26 KB
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.10'
gem 'bootsnap', '1.16.0', require: false
gem 'concurrent-ruby', '1.3.4'
gem 'importmap-rails', '1.1.5'
gem 'jbuilder', '2.14.1'
gem 'puma', '6.6.1'
gem 'rails', '8.0.2.1'
gem 'sassc-rails', '2.1.2'
gem 'sprockets-rails', '3.4.2'
gem 'sqlite3', '2.7.3'
gem 'stimulus-rails', '1.2.1'
gem 'turbo-rails', '1.4.0'
group :development, :test do
gem 'debug', '1.7.1', platforms: %i[mri mingw x64_mingw]
gem 'reline', '0.5.10'
end
group :development do
gem 'irb', '1.15.2'
gem 'repl_type_completor', '0.1.10'
gem 'solargraph', '0.58.2'
gem 'web-console', '4.2.0'
end
group :test do
gem 'capybara', '3.38.0'
gem 'guard', '2.18.0'
gem 'guard-minitest', '2.4.6'
gem 'minitest', '5.18.0'
gem 'minitest-reporters', '1.6.0'
gem 'rails-controller-testing', '1.0.5'
gem 'selenium-webdriver', '4.8.3'
gem 'webdrivers', '5.2.0'
end
# Windows ではタイムゾーン情報用の tzinfo-data gem を含める必要があります
# gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]