-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
62 lines (44 loc) · 1.77 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
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true
source "https://rubygems.org"
ruby file: ".ruby-version"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 8.0.1"
# Use sqlite3 as the database for Active Record
gem "sqlite3", "~> 2.5"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 6.5"
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails", "~> 2.1"
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails", "~> 2.0"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", "~> 2.0", platforms: %i[mingw mswin x64_mingw jruby]
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "~> 1.18", require: false
# Use Sass to process CSS
gem "sassc-rails", "~> 2.1"
# Bootstrap
gem "bootstrap", "~> 5.3"
gem "fastimage", "~> 2.4"
gem "mini_magick", "~> 5.1"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", "~> 1.10", platforms: %i[mri mingw x64_mingw]
gem "rspec-rails", "~> 7.1"
gem "rubocop-rickselby", "~> 0.49", require: false
end
group :development do
gem "bundler-audit", "~> 0.9"
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console", "~> 4.2"
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler"
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara", "~> 3.40"
gem "selenium-webdriver", "~> 4.10"
gem "webdrivers", "~> 5.3"
end