Skip to content

Commit

Permalink
Updated rails 7.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
taketo1113 committed Jul 6, 2022
1 parent 85e39c0 commit f9ddfa5
Show file tree
Hide file tree
Showing 29 changed files with 212 additions and 275 deletions.
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,19 @@ config/database.yml
# Ignore uploaded files in development.
/storage/*
!/storage/.keep
/tmp/storage/*
!/tmp/storage/
!/tmp/storage/.keep

/public/system/*
/public/assets
.byebug_history
/public/packs
/public/packs-test

# Ignore master key for decrypting credentials and more.
/config/master.key

/public/packs
/public/packs-test
# npm
/node_modules
/yarn-error.log
yarn-debug.log*
Expand Down
57 changes: 28 additions & 29 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,29 +1,43 @@
source 'https://rubygems.org'
source "https://rubygems.org"
ruby '3.1.2'

gem 'rails', '6.1.6'
gem 'rails', '7.0.3'

gem 'mysql2', '~> 0.5'

gem 'puma', '~> 5.6'

gem 'slim-rails'
gem 'sassc-rails'
gem 'jbuilder'

gem "sprockets-rails"
gem 'webpacker', '~> 5.0'
gem 'jbuilder', '~> 2.7'

gem 'rack-cors'

# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# gem "redis", "~> 4.0"
# 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"

# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]

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

# Use Sass to process CSS
gem "sassc-rails"

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

group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[ mri mingw x64_mingw ]
end

#group :development do
# gem 'capistrano-ext'
Expand All @@ -32,15 +46,9 @@ gem 'bootsnap', '>= 1.4.4', require: false
# gem 'capistrano-bundler'
#end

group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end

group :development do
# gem 'web-console', '>= 4.1.0'
gem 'rack-mini-profiler', '~> 2.0'
gem 'listen', '~> 3.3'
# gem 'web-console'
gem 'rack-mini-profiler'
gem 'spring'
gem 'awesome_print'
gem 'rails-erd'
Expand All @@ -50,17 +58,8 @@ group :development, :test do
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'capybara'
gem 'webrat'
gem "selenium-webdriver"
gem "webdrivers"
gem 'factory_bot_rails'
gem 'committee-rails'
# gem 'selenium-webdriver'
end

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

# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
# So we need to add them as dependencies until `mail` is fixed: https://github.com/mikel/mail/pull/1439
gem "net-smtp", require: false
gem "net-imap", require: false
gem "net-pop", require: false
Loading

0 comments on commit f9ddfa5

Please sign in to comment.