Sha256: 1e9dacba4dcb2676d33ee93dc7eca8d6fa642ba2d001354a8feb5c0a6dbd3455
Contents?: true
Size: 1.45 KB
Versions: 1
Compression:
Stored size: 1.45 KB
Contents
# frozen_string_literal: true require "rails/railtie" require "turbo-rails" module Katalyst module Kpop class Engine < ::Rails::Engine isolate_namespace Katalyst::Kpop config.eager_load_namespaces << Katalyst::Kpop config.paths.add("lib", autoload_once: true) initializer "kpop.assets" do config.after_initialize do |app| if app.config.respond_to?(:assets) app.config.assets.precompile += %w(katalyst-kpop.js) end end end initializer "kpop.helpers", before: :load_config_initializers do ::Turbo::Streams::TagBuilder.define_method(:kpop) do Katalyst::Kpop::Turbo::TagBuilder.new(self) end ActiveSupport.on_load(:action_controller_base) do include Katalyst::Kpop::FrameRequest helper Katalyst::Kpop::Engine.helpers end end initializer "kpop.importmap", before: "importmap" do |app| if app.config.respond_to?(:importmap) app.config.importmap.paths << root.join("config/importmap.rb") app.config.importmap.cache_sweepers << root.join("app/assets/builds") end end initializer "kpop.rspec" do next unless defined?(RSpec) && RSpec.respond_to?(:configure) RSpec.configure do |config| config.include Katalyst::Kpop::Matchers, type: :component config.include Katalyst::Kpop::Matchers, type: :request end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
katalyst-kpop-3.2.0 | lib/katalyst/kpop/engine.rb |