From 8ef5e427bc1002650ed6f154a45bdac8927a07eb Mon Sep 17 00:00:00 2001 From: Jeremy Friesen Date: Tue, 28 Nov 2023 14:39:17 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20install=20location=20for?= =?UTF-8?q?=20helpers/iiif=5Fprint=5Fhelper?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Prior to this commit, the `helpers/iiif_print_helper.rb` file installed in `Rails.root + /helpers/iiif_print_helper.rb`; it should be in `app/helpers/iiif_print_helper.rb` --- lib/generators/iiif_print/install_generator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/generators/iiif_print/install_generator.rb b/lib/generators/iiif_print/install_generator.rb index 99b6453b..fd849b5d 100644 --- a/lib/generators/iiif_print/install_generator.rb +++ b/lib/generators/iiif_print/install_generator.rb @@ -31,7 +31,7 @@ def inject_assets end def inject_helper - copy_file 'helpers/iiif_print_helper.rb' + copy_file 'helpers/iiif_print_helper.rb' 'app/helpers/iiif_print_helper.rb' end # Blacklight IIIF Search generator has some linting that does not agree with CircleCI on Hyku