1- source " https://rubygems.org"
1+ source ' https://rubygems.org'
22git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
33
4- ruby " 3.2.0"
4+ ruby ' 3.2.0'
55
66# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
7- gem " rails" , " ~> 7.0.4" , " >= 7.0.4.3"
7+ gem ' rails' , ' ~> 7.0.4' , ' >= 7.0.4.3'
88
99# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
10- gem " sprockets-rails"
10+ gem ' sprockets-rails'
1111
1212# Use sqlite3 as the database for Active Record
13- gem " sqlite3" , " ~> 1.4"
13+ gem ' sqlite3' , ' ~> 1.4'
1414
1515gem 'pg'
1616
1717# Use the Puma web server [https://github.com/puma/puma]
18- gem " puma" , " ~> 5.0"
18+ gem ' puma' , ' ~> 5.0'
1919
2020# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
21- gem " importmap-rails"
21+ gem ' importmap-rails'
2222
2323# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
24- gem " turbo-rails"
24+ gem ' turbo-rails'
2525
2626# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
27- gem " stimulus-rails"
27+ gem ' stimulus-rails'
2828
2929# Build JSON APIs with ease [https://github.com/rails/jbuilder]
30- gem " jbuilder"
30+ gem ' jbuilder'
3131
3232# Use Redis adapter to run Action Cable in production
33- gem " redis" , " ~> 4.0"
33+ gem ' redis' , ' ~> 4.0'
3434
3535# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
3636# gem "kredis"
@@ -39,12 +39,12 @@ gem "redis", "~> 4.0"
3939# gem "bcrypt", "~> 3.1.7"
4040
4141# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
42- gem " tzinfo-data" , platforms : %i[ mingw mswin x64_mingw jruby ]
42+ gem ' tzinfo-data' , platforms : %i[ mingw mswin x64_mingw jruby ]
4343
4444# Reduces boot times through caching; required in config/boot.rb
45- gem " bootsnap" , require : false
45+ gem ' bootsnap' , require : false
4646
47- gem " devise"
47+ gem ' devise'
4848
4949gem 'devise-jwt'
5050
@@ -58,6 +58,8 @@ gem 'grape_logging'
5858
5959gem 'faker'
6060
61+ gem 'blazer'
62+
6163# Use Sass to process CSS
6264# gem "sassc-rails"
6365
@@ -66,15 +68,15 @@ gem 'faker'
6668
6769group :development , :test do
6870 # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
69- gem " debug" , platforms : %i[ mri mingw x64_mingw ]
71+ gem ' debug' , platforms : %i[ mri mingw x64_mingw ]
7072 gem 'byebug'
7173 gem 'rspec-rails'
7274 gem 'factory_bot_rails'
7375end
7476
7577group :development do
7678 # Use console on exceptions pages [https://github.com/rails/web-console]
77- gem " web-console"
79+ gem ' web-console'
7880
7981 # Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
8082 # gem "rack-mini-profiler"
8587
8688group :test do
8789 # Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
88- gem " capybara"
89- gem " selenium-webdriver"
90- gem " webdrivers"
90+ gem ' capybara'
91+ gem ' selenium-webdriver'
92+ gem ' webdrivers'
9193end
0 commit comments