-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (33 loc) · 726 Bytes
/
Gemfile
File metadata and controls
47 lines (33 loc) · 726 Bytes
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
source "https://rubygems.org"
gem "rails", "~> 8.0.0"
gem "puma"
gem "rake"
gem "rspec-rails"
gem "haml"
gem "jbuilder"
gem "kaminari"
gem "propshaft"
gem "jsbundling-rails"
gem "cssbundling-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem "bootsnap", require: false
gem "tzinfo-data", platforms: [ :windows, :jruby ]
group :development do
gem "web-console"
gem "rubocop"
gem "rubocop-rails-omakase"
gem "sdoc"
gem "spring"
end
gem "simplecov", require: false
gem "debug", platforms: [ :mri, :windows ], require: "debug/prelude"
# platform specific gems
platforms :ruby do
gem "sqlite3"
end
platforms :jruby do
gem "jdbc-sqlite3"
gem "activerecord-jdbcsqlite3-adapter"
gem "jruby-openssl"
end