Sha256: 22c7cfec821ad2ae9fefa75eff5685193a3cfa6f7bf0d3fbafde2328fc65f2e5
Contents?: true
Size: 545 Bytes
Versions: 8
Compression:
Stored size: 545 Bytes
Contents
module BatchManager class Engine < ::Rails::Engine isolate_namespace BatchManager rake_tasks do Dir[File.join(File.dirname(__FILE__), '../tasks/*.rake')].each { |f| load f } end config.batch_manager = ActiveSupport::OrderedOptions.new config.batch_manager.batch_dir = "script/batch" config.batch_manager.save_log = true config.batch_manager.log_dir = "log/batch" initializer "batch_manager.assets.precompile" do |app| app.config.assets.precompile += %w(batch_manager/editor.js) end end end
Version data entries
8 entries across 8 versions & 1 rubygems