-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (43 loc) · 1.55 KB
/
Gemfile
File metadata and controls
46 lines (43 loc) · 1.55 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
43
44
45
46
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '7.1.5.1'
# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '6.4.3'
# Use Slim as template engine
gem 'slim-rails', '3.6.3'
# Use Sass to process CSS
gem 'sass-rails', '6.0.0'
# Use Bootstrap as HTML, CSS, and JS framework
gem 'bootstrap-sass', '3.4.1'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'execjs', '2.9.1'
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem 'turbo-rails', '2.0.11'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '2.11.5'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'rdoc', '6.6.3.1'
gem 'sdoc', '2.6.1', group: :doc
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '1.17.0', require: false
gem 'json', '2.6.3'
gem 'nokogiri', '1.18.9'
gem 'psych', '5.1.1.1'
gem 'rack', '2.2.20'
group :development, :test do
gem 'debug', '1.8.0', require: false
gem 'rails-controller-testing', '1.0.5'
# Use Rspec as test framework
gem 'rspec', '3.12.0'
gem 'rspec-rails', '6.0.3'
# Use RuboCop as Ruby static code analyzer
gem 'rubocop', '1.68.0', require: false
# Use Coveralls for Test Coverage History & Statistics
gem 'coveralls', '0.8.23', require: false
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '4.2.1'
end