Sha256: 03338b8b10d41aec3b17af03c4e6ff2c219acc49d527f6b0879b1aacdc808071
Contents?: true
Size: 1.56 KB
Versions: 3
Compression:
Stored size: 1.56 KB
Contents
require "sprockets/railtie" module Trestle class Engine < ::Rails::Engine isolate_namespace Trestle self.routes.default_scope = {} # Application assets config.assets.precompile << "trestle/admin.css" << "trestle/admin.js" << "trestle/custom.css" # Vendor assets %w(eot svg ttf woff woff2).each do |ext| config.assets.precompile << "trestle/fa-*.#{ext}" end initializer "trestle.automount" do |app| if Trestle.config.automount app.routes.prepend do mount Trestle::Engine => Trestle.config.path end end end initializer "trestle.draper" do |app| if defined?(Draper) Draper::CollectionDecorator.delegate :current_page, :total_pages, :limit_value, :entry_name, :total_count, :offset_value, :last_page? end end initializer "trestle.theme" do |app| # Enable theme compilation if Trestle.config.theme app.config.assets.paths << root.join("frontend/theme").to_s app.config.assets.precompile << "trestle/theme.css" end end initializer "trestle.turbolinks" do |app| # Optional turbolinks app.config.assets.precompile << "turbolinks.js" if Trestle.config.turbolinks end config.to_prepare do Engine.reset_helpers! end config.to_prepare do if Trestle.config.reload == :always Engine.reloader.execute else Engine.reloader.execute_if_updated end end def reloader @reloader ||= Trestle::Reloader.new end def reset_helpers! @helpers = nil end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
trestle-0.9.2 | lib/trestle/engine.rb |
trestle-0.9.1 | lib/trestle/engine.rb |
trestle-0.9.0 | lib/trestle/engine.rb |