Skip to content

Commit

Permalink
Update Rails to 6.1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
asideofcode-dev committed Aug 3, 2023
1 parent 17663b2 commit 974ace4
Show file tree
Hide file tree
Showing 53 changed files with 8,062 additions and 207 deletions.
1 change: 1 addition & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
defaults
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,10 @@ TAGS
# Ignore local uploads
public/uploads/
vendor/bundle

/public/packs
/public/packs-test
/node_modules
/yarn-error.log
yarn-debug.log*
.yarn-integrity
36 changes: 22 additions & 14 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
source 'https://rubygems.org'
ruby '2.7.2'

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

gem 'acts-as-taggable-on'
gem 'carrierwave'
Expand All @@ -18,23 +18,27 @@ gem 'haml'
gem 'high_voltage'
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Use ActiveStorage variant
gem 'mini_magick'

# Use Active Storage variant
gem 'image_processing', '~> 1.2'
gem 'nokogiri'
gem 'omniauth'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
gem 'pg'
gem 'pickadate-rails'
gem 'premailer-rails'
gem 'puma'
gem 'puma', '~> 5.0'
gem 'pundit'
gem 'rails4-autocomplete'
gem 'rolify'
gem 'sassc-rails'
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.0'
gem 'simple_form'
gem 'turbolinks'
gem 'terser', '~> 1.1'

gem 'terser'

gem 'will_paginate'
gem 'sprockets-rails'

Expand All @@ -50,18 +54,22 @@ gem 'stripe'

gem 'rails-html-sanitizer', '~> 1.4.4'

gem 'jbuilder'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
gem 'public_activity'

group :development do
gem 'better_errors'
gem 'letter_opener'
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'web-console', '>= 4.1.0'
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem 'rack-mini-profiler', '~> 2.0'
gem 'listen', '~> 3.3'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end

group :development, :test do
Expand All @@ -81,7 +89,7 @@ group :development, :test do
end

group :test do
gem 'capybara'
gem 'capybara', '>= 3.26'
gem 'database_cleaner'
gem 'shoulda-matchers', '~> 4.5'
gem 'webdrivers'
Expand Down
Loading

0 comments on commit 974ace4

Please sign in to comment.