Sha256: 6d3a2da7475a30bb10aeeac6c901c07122296a857fc593adfeb0def2aff8a428
Contents?: true
Size: 722 Bytes
Versions: 565
Compression:
Stored size: 722 Bytes
Contents
# frozen_string_literal: true require "action_view/railtie" require "webpacker/react" require "view_component" module Playbook class Engine < ::Rails::Engine isolate_namespace Playbook config.generators do |g| g.test_framework :rspec end config.view_component.render_monkey_patch_enabled = false if config.respond_to?(:assets) config.assets.paths ||= [] config.assets.paths << Playbook::Engine.root.join("fonts") config.assets.paths << Playbook::Engine.root.join("app/pb_kits/playbook/pb_*") end if config.respond_to?(:sass) config.sass.load_paths ||= [] config.sass.load_paths << Playbook::Engine.root.join("app/pb_kits/playbook") end end end
Version data entries
565 entries across 565 versions & 1 rubygems