Skip to content

Commit

Permalink
Merge branch 'release/v0.11.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdanRada committed Jan 8, 2014
2 parents dbac80e + c0101c6 commit 5a6efb9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions lib/washout_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,22 @@ def initialize(attributes = nil)
end
end

if defined?(WashOut::SoapConfig)
WashOut::SoapConfig.class_eval do
self.singleton_class.send(:alias_method, :original_config, :config)
self.singleton_class.send(:alias_method, :original_keys, :keys)

def self.keys
@keys = config.keys
end

def self.config
original_config.merge({description: nil})
end

end
WashOut::SoapConfig.soap_accessor(:description)
end


WashOut::Param.class_eval do
Expand Down
2 changes: 1 addition & 1 deletion lib/washout_builder/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module WashoutBuilder
VERSION = "0.11.3"
VERSION = "0.11.4"
end

0 comments on commit 5a6efb9

Please sign in to comment.