Sha256: 62e095f6f7869cb6d2c90b0b8dfd4b785171bdfca48f63e5e137733e1381ce57
Contents?: true
Size: 409 Bytes
Versions: 19
Compression:
Stored size: 409 Bytes
Contents
module WashoutBuilder class Engine < ::Rails::Engine initializer "wash_out.configuration" do |app| app.routes.append do match "/washout" => "washout_builder#all", :via => :get, :format => false end if app.config.wash_out[:catch_xml_errors] app.config.middleware.insert_after 'ActionDispatch::ShowExceptions', WashOut::Middlewares::Catcher end end end end
Version data entries
19 entries across 19 versions & 1 rubygems