Skip to content

Commit

Permalink
add to Gemfile the new gems of Rails 7
Browse files Browse the repository at this point in the history
  • Loading branch information
syphax-bouazzouni committed May 29, 2022
1 parent e7002ec commit 6cc4604
Showing 1 changed file with 33 additions and 5 deletions.
38 changes: 33 additions & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ source 'https://rubygems.org'
gem 'rails', '7.0.3'

gem 'jsbundling-rails'
gem 'stimulus-rails'

gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.0.3'
Expand All @@ -18,14 +17,35 @@ gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'select2-rails'


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


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

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

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

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

# Build JSON APIs with ease [https://github.com/rails/jbuilder]
#gem "jbuilder"

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

# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'

# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Reduces boot times through caching; required in config/boot.rb

# To use debugger
# gem 'debugger'
gem 'bootsnap', require: false

gem 'cube-ruby', require: 'cube'
gem 'dalli'
Expand Down Expand Up @@ -71,12 +91,20 @@ group :development do
gem 'brakeman', require: false
gem 'rubocop', require: false
# gem 'i18n-debug'
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem 'debug', platforms: %i[ mri mingw x64_mingw ]

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

group :test, :development do
gem 'rspec-rails'
end

group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem 'capybara'
gem 'selenium-webdriver'
gem 'webdrivers'
end

0 comments on commit 6cc4604

Please sign in to comment.