-
- Downloads
Remove unused gem jbuilder and clean up Gemfile formatting
... | @@ -2,7 +2,6 @@ source "https://rubygems.org" | ... | @@ -2,7 +2,6 @@ source "https://rubygems.org" |
ruby "3.3.6" | ruby "3.3.6" | ||
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" | |||
gem "rails", "~> 8.0.1" | gem "rails", "~> 8.0.1" | ||
# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] | # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails] | ||
... | @@ -14,24 +13,15 @@ gem "sqlite3", "~> 2.5" | ... | @@ -14,24 +13,15 @@ gem "sqlite3", "~> 2.5" |
# 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" | ||
# Build JSON APIs with ease [https://github.com/rails/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.1" | gem "redis", ">= 4.0.1" | ||
# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis] | |||
# gem "kredis" | |||
# 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[ windows jruby ] | gem "tzinfo-data", platforms: %i[ windows 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 Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images] | |||
# gem "image_processing", "~> 1.2" | |||
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 windows ] | gem "debug", platforms: %i[ mri windows ] | ||
... | @@ -55,6 +45,7 @@ group :test do | ... | @@ -55,6 +45,7 @@ group :test do |
end | end | ||
gem "solid_queue", "~> 1.1" | gem "solid_queue", "~> 1.1" | ||
gem "httparty" | gem "httparty" | ||
gem "tailwindcss-rails", "~> 3.1" | gem "tailwindcss-rails", "~> 3.1" | ||
... | ... |
Please register or sign in to comment