Sha256: 292cb4192efd3ce8d2ffcbe813ccbf19f2fb4abaa11ad8c7c29faf4f8d3a239f
Contents?: true
Size: 653 Bytes
Versions: 2
Compression:
Stored size: 653 Bytes
Contents
require 'wash_out/engine' require 'wash_out/param' require 'wash_out/dispatcher' require 'wash_out/soap' require 'wash_out/router' module ActionDispatch::Routing class Mapper # Adds the routes for a SOAP endpoint at +controller+. def wash_out(controller_name, options={}) match "#{controller_name}/wsdl" => "#{controller_name}#_generate_wsdl", :via => :get match "#{controller_name}/action" => WashOut::Router.new(controller_name), :defaults => { :action => '_action' } end end end Mime::Type.register "application/soap+xml", :soap ActionController::Renderers.add :soap do |what, options| _render_soap(what, options) end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wash_out-0.2.3 | lib/wash_out.rb |
wash_out-0.2.2 | lib/wash_out.rb |