[Rails] Wine cellar inventory tracker.
1
source "https://rubygems.org"
2
3
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
4
gem "rails", "~> 7.2.1"
5
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
6
gem "sprockets-rails"
7
# Use sqlite3 as the database for Active Record
8
gem "sqlite3", ">= 1.4"
9
# Use the Puma web server [https://github.com/puma/puma]
10
gem "puma", ">= 5.0"
11
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
12
gem "importmap-rails"
13
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
14
gem "turbo-rails"
15
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
16
gem "stimulus-rails"
17
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
18
gem "jbuilder"
19
# Use Redis adapter to run Action Cable in production
20
# gem "redis", ">= 4.0.1"
21
22
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
23
# gem "kredis"
24
25
# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
26
# gem "bcrypt", "~> 3.1.7"
27
28
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
29
gem "tzinfo-data", platforms: %i[ windows jruby ]
30
31
# Reduces boot times through caching; required in config/boot.rb
32
gem "bootsnap", require: false
33
34
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
35
# gem "image_processing", "~> 1.2"
36
37
group :development, :test do
38
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
39
gem "debug", platforms: %i[ mri windows ], require: "debug/prelude"
40
41
# Static analysis for security vulnerabilities [https://brakemanscanner.org/]
42
gem "brakeman", require: false
43
44
# Omakase Ruby styling [https://github.com/rails/rubocop-rails-omakase/]
45
gem "rubocop-rails-omakase", require: false
46
end
47
48
group :development do
49
# Use console on exceptions pages [https://github.com/rails/web-console]
50
gem "web-console"
51
end
52
53
group :test do
54
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
55
gem "capybara"
56
gem "selenium-webdriver"
57
end
58