Skip to content

Commit

Permalink
Update test app Ruby to 3.2.3 + add Turbolinks
Browse files Browse the repository at this point in the history
  • Loading branch information
holyketzer committed Nov 29, 2024
1 parent 4035a5b commit 5c63342
Show file tree
Hide file tree
Showing 6 changed files with 142 additions and 117 deletions.
2 changes: 1 addition & 1 deletion test_app/blog/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.2
3.2.3
12 changes: 8 additions & 4 deletions test_app/blog/Gemfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "2.7.2"
ruby "3.2.3"

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.0.4", ">= 7.0.4.3"
gem "rails", "~> 7.0.8", ">= 7.0.4.3"

# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
Expand Down Expand Up @@ -49,14 +49,18 @@ gem "bootsnap", require: false
# Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
# gem "image_processing", "~> 1.2"

gem 'activeadmin'
gem 'activeadmin', "~> 2.9"

gem 'turbolinks', "~> 5.2.1"

# Plus integrations with:
gem 'devise'
gem 'cancancan'
gem 'draper'
gem 'pundit'
gem 'activeadmin-ajax_filter', path: '../..'
gem 'activeadmin-ajax_filter' #, path: '../..'
gem 'activeadmin-async_panel'
gem 'ransack', '~> 3.2.1'
gem 'faker', :git => 'https://github.com/faker-ruby/faker.git', :branch => 'main'

group :development, :test do
Expand Down
Loading

0 comments on commit 5c63342

Please sign in to comment.