|
|
|
@ -1,34 +1,34 @@
|
|
|
|
source "https://rubygems.org"
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
|
|
|
|
|
|
|
|
ruby "3.1.2"
|
|
|
|
ruby '3.2.0'
|
|
|
|
|
|
|
|
|
|
|
|
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
|
|
|
|
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
|
|
|
|
gem "rails", "~> 7.0.4"
|
|
|
|
gem 'rails', '~> 7.0.4'
|
|
|
|
|
|
|
|
|
|
|
|
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
|
|
|
|
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
|
|
|
|
gem "sprockets-rails"
|
|
|
|
gem 'sprockets-rails'
|
|
|
|
|
|
|
|
|
|
|
|
# Use postgresql as the database for Active Record
|
|
|
|
# Use postgresql as the database for Active Record
|
|
|
|
gem "pg", "~> 1.1"
|
|
|
|
gem 'pg', '~> 1.1'
|
|
|
|
|
|
|
|
|
|
|
|
# Use the Puma web server [https://github.com/puma/puma]
|
|
|
|
# Use the Puma web server [https://github.com/puma/puma]
|
|
|
|
gem "puma", "~> 5.0"
|
|
|
|
gem 'puma', '~> 5.0'
|
|
|
|
|
|
|
|
|
|
|
|
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
|
|
|
|
# Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
|
|
|
|
gem "jsbundling-rails"
|
|
|
|
gem 'jsbundling-rails'
|
|
|
|
|
|
|
|
|
|
|
|
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
|
|
|
|
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
|
|
|
|
gem "turbo-rails"
|
|
|
|
gem 'turbo-rails'
|
|
|
|
|
|
|
|
|
|
|
|
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
|
|
|
|
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
|
|
|
|
gem "stimulus-rails"
|
|
|
|
gem 'stimulus-rails'
|
|
|
|
|
|
|
|
|
|
|
|
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
|
|
|
|
# Bundle and process CSS [https://github.com/rails/cssbundling-rails]
|
|
|
|
gem "cssbundling-rails"
|
|
|
|
gem 'cssbundling-rails'
|
|
|
|
|
|
|
|
|
|
|
|
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
|
|
|
|
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
|
|
|
|
gem "jbuilder"
|
|
|
|
gem 'jbuilder'
|
|
|
|
|
|
|
|
|
|
|
|
# Use Redis adapter to run Action Cable in production
|
|
|
|
# Use Redis adapter to run Action Cable in production
|
|
|
|
# gem "redis", "~> 4.0"
|
|
|
|
# gem "redis", "~> 4.0"
|
|
|
|
@ -40,10 +40,10 @@ gem "jbuilder"
|
|
|
|
# gem "bcrypt", "~> 3.1.7"
|
|
|
|
# gem "bcrypt", "~> 3.1.7"
|
|
|
|
|
|
|
|
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
|
|
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
|
|
|
|
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
|
|
|
|
|
|
|
|
|
|
|
|
# Reduces boot times through caching; required in config/boot.rb
|
|
|
|
# Reduces boot times through caching; required in config/boot.rb
|
|
|
|
gem "bootsnap", require: false
|
|
|
|
gem 'bootsnap', require: false
|
|
|
|
|
|
|
|
|
|
|
|
# Use Sass to process CSS
|
|
|
|
# Use Sass to process CSS
|
|
|
|
# gem "sassc-rails"
|
|
|
|
# gem "sassc-rails"
|
|
|
|
@ -55,12 +55,12 @@ gem 'mail_form'
|
|
|
|
|
|
|
|
|
|
|
|
group :development, :test do
|
|
|
|
group :development, :test do
|
|
|
|
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
|
|
|
|
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
|
|
|
|
gem "debug", platforms: %i[ mri mingw x64_mingw ]
|
|
|
|
gem 'debug', platforms: %i[mri mingw x64_mingw]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
group :development do
|
|
|
|
group :development do
|
|
|
|
# Use console on exceptions pages [https://github.com/rails/web-console]
|
|
|
|
# Use console on exceptions pages [https://github.com/rails/web-console]
|
|
|
|
gem "web-console"
|
|
|
|
gem 'web-console'
|
|
|
|
|
|
|
|
|
|
|
|
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
|
|
|
|
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
|
|
|
|
# gem "rack-mini-profiler"
|
|
|
|
# gem "rack-mini-profiler"
|
|
|
|
@ -69,8 +69,7 @@ group :development do
|
|
|
|
# gem "spring"
|
|
|
|
# gem "spring"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
group :development, :test do
|
|
|
|
group :development, :test do
|
|
|
|
gem "rspec-rails"
|
|
|
|
gem 'factory_bot_rails'
|
|
|
|
gem "factory_bot_rails"
|
|
|
|
gem 'rspec-rails'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|