Skip to content

Commit

Permalink
rails 8
Browse files Browse the repository at this point in the history
  • Loading branch information
loftwah committed Dec 23, 2024
1 parent 82c64c9 commit 03d7c9a
Show file tree
Hide file tree
Showing 26 changed files with 859 additions and 506 deletions.
79 changes: 32 additions & 47 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,84 +2,69 @@ source 'https://rubygems.org'

ruby '>= 3.3.0'

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~> 7.2.1'
# Use Rails 8.0.1
gem 'rails', '~> 8.0.1'

# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem 'sprockets-rails'
gem 'sprockets-rails', '>= 3.5.2'

# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4'
gem 'sqlite3', '>= 2.1'

# Use the Puma web server [https://github.com/puma/puma]
gem 'puma', '>= 5.0'
gem 'puma', '>= 6.5'

# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem 'importmap-rails'
gem 'importmap-rails', '>= 2.0'

# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem 'turbo-rails'
gem 'turbo-rails', '>= 2.0.0'

# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem 'stimulus-rails'
gem 'stimulus-rails', '>= 1.3.0'

# Use Tailwind CSS [https://github.com/rails/tailwindcss-rails]
gem 'tailwindcss-rails'
gem 'tailwindcss-rails', '>= 3.0.0'

# Build JSON APIs with ease [https://github.com/rails/jbuilder]
gem 'jbuilder'
gem 'jbuilder', '>= 2.13'

# Use Redis adapter to run Action Cable in production
gem 'redis', '>= 4.0.1'

gem 'chartkick'
gem 'devise'
gem 'font-awesome-sass', '~> 6.5.2'
gem 'maxmind-geoip2'
gem 'groupdate'
gem 'mini_magick'
gem 'sidekiq'
gem 'sidekiq-scheduler'
gem 'vite_rails'
gem 'aws-sdk-s3'
gem 'kamal'

# Use Kredis to get higher-level data types in Redis [https://github.com/rails/kredis]
# gem "kredis"

# Use Active Model has_secure_password [https://guides.rubyonrails.org/active_model_basics.html#securepassword]
# gem "bcrypt", "~> 3.1.7"
gem 'redis', '>= 5.0'

gem 'chartkick', '>= 5.0'
gem 'devise', '>= 4.9.4'
gem 'font-awesome-sass', '>= 6.5.2'
gem 'maxmind-geoip2', '>= 1.2.0'
gem 'groupdate', '>= 6.5'
gem 'mini_magick', '>= 5.0'
gem 'sidekiq', '>= 7.3'
gem 'sidekiq-scheduler', '>= 5.0'
gem 'vite_rails', '>= 3.0'
gem 'aws-sdk-s3', '>= 1.135'
gem 'kamal', '>= 2.0'

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[windows jruby]

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false

# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"
gem 'bootsnap', '>= 1.18', require: false

group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
# Debugging tools
gem 'debug', platforms: %i[mri windows]
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 7.0.1'
gem 'shoulda-matchers'
gem 'factory_bot_rails', '>= 6.4'
gem 'rspec-rails', '>= 7.0.1'
gem 'shoulda-matchers', '>= 6.0'
end

group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem 'web-console'

# 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"
gem 'web-console', '>= 4.2'
end

group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem 'capybara'
gem 'selenium-webdriver'
# System testing tools
gem 'capybara', '>= 3.40'
gem 'selenium-webdriver', '>= 4.10'
end
Loading

0 comments on commit 03d7c9a

Please sign in to comment.