From 2a92940cfa4942c55c11c0307722107753df2e53 Mon Sep 17 00:00:00 2001 From: Justin Coyne Date: Tue, 27 Feb 2024 08:05:38 -0600 Subject: [PATCH] Drop turbolinks dependency It should work fine with turbo, which is the default in Rails now --- .github/workflows/ruby.yml | 2 +- spec/test_app_templates/lib/generators/test_app_generator.rb | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 9ea03d328..a0b2b1c98 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -40,7 +40,7 @@ jobs: RAILS_VERSION: ${{ matrix.rails_version }} BLACKLIGHT_VERSION: ${{ matrix.blacklight_version }} BOOTSTRAP_VERSION: ${{ matrix.bootstrap_version }} - ENGINE_CART_RAILS_OPTIONS: --skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test --skip-javascript + ENGINE_CART_RAILS_OPTIONS: --skip-git --skip-listen --skip-spring --skip-keeps --skip-action-cable --skip-coffee --skip-test steps: - uses: actions/checkout@v3 - name: Set up Ruby ${{ matrix.ruby }} diff --git a/spec/test_app_templates/lib/generators/test_app_generator.rb b/spec/test_app_templates/lib/generators/test_app_generator.rb index a0ee0396e..a33e32e43 100644 --- a/spec/test_app_templates/lib/generators/test_app_generator.rb +++ b/spec/test_app_templates/lib/generators/test_app_generator.rb @@ -12,7 +12,6 @@ def use_capybara3 def add_gems gem 'blacklight', '~> 7.17' unless Bundler.locked_gems.dependencies.key? 'blacklight' gem 'blacklight-gallery', '~> 4.0' unless Bundler.locked_gems.dependencies.key? 'blacklight-gallery' - gem 'turbolinks', '~> 5' Bundler.with_clean_env do run 'bundle install'