From 01714069137ab07062b7e5e081e5880be1122e17 Mon Sep 17 00:00:00 2001 From: Alexander Lang Date: Wed, 22 Jan 2025 13:42:46 +0100 Subject: [PATCH] clean up --- comfortable_media_surfer.gemspec | 4 +--- config/application.rb | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/comfortable_media_surfer.gemspec b/comfortable_media_surfer.gemspec index 9306098e..166dc71b 100644 --- a/comfortable_media_surfer.gemspec +++ b/comfortable_media_surfer.gemspec @@ -13,9 +13,7 @@ Gem::Specification.new do |spec| spec.description = 'ComfortableMediaSurfer is a powerful Rails 7.0+ CMS Engine' spec.license = 'MIT' - spec.post_install_message = <<~MSG - Please run rake comfy:compile_assets to compile assets. - MSG + spec.post_install_message = 'Please run rake comfy:compile_assets to compile assets.' spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|doc)/}) diff --git a/config/application.rb b/config/application.rb index cc73e471..a058ef15 100644 --- a/config/application.rb +++ b/config/application.rb @@ -29,7 +29,7 @@ class Application < Rails::Application # not contain `.rb` files, or that should not be reloaded or eager loaded. # Common ones are `templates`, `generators`, or `middleware`, for example. config.add_autoload_paths_to_load_path = false - config.autoload_lib(ignore: %w[generators rubygems_plugin.rb]) + config.autoload_lib(ignore: %w[generators]) end # Making sure we don't load our dev routes as part of the engine