lib/savon/model.rb in savon_model-0.2.0 vs lib/savon/model.rb in savon_model-0.3.0
- old
+ new
@@ -1,27 +1,14 @@
require "savon"
-require "savon/ext/response"
module Savon
# = Savon::Model
#
# Model for SOAP service oriented applications.
module Model
- VERSION = "0.2.0"
-
- class << self
-
- # Returns the response pattern to apply.
- def response_pattern
- @response_pattern ||= []
- end
-
- # Sets the response pattern. This is required to be an Array of Regexps or Symbols.
- attr_writer :response_pattern
-
- end
+ VERSION = "0.3.0"
module ClassMethods
# Returns a memoized <tt>Savon::Client</tt> instance. Accepts a block and passes it
# to <tt>Savon::Client.new</tt> when called for the first time.