Sha256: 4616c5a885e754b9e09597b1c7219a7e4dd71d2b09ba02da175d2cdc6511efee
Contents?: true
Size: 361 Bytes
Versions: 13
Compression:
Stored size: 361 Bytes
Contents
module ActiveAdmin class Engine < ::Rails::Engine initializer "active_admin.precompile", group: :all do |app| ActiveAdmin.application.stylesheets.each do |path, _| app.config.assets.precompile << path end ActiveAdmin.application.javascripts.each do |path| app.config.assets.precompile << path end end end end
Version data entries
13 entries across 13 versions & 1 rubygems