Sha256: 3e98020d7650d8bf1307ded58bdafa9f78f35739b4e051c474332a98360cc434
Contents?: true
Size: 656 Bytes
Versions: 4
Compression:
Stored size: 656 Bytes
Contents
module WashOut class Type def self.type_name(value) @param_type_name = value end def self.map(value) raise RuntimeError, "Wrong definition: #{value.inspect}" unless value.is_a?(Hash) @param_map = value end def self.wash_out_param_map @param_map end def self.wash_out_param_name @param_type_name ||= name.underscore.gsub '/', '.' if WashOut::Engine.camelize_wsdl.to_s == 'lower' @param_type_name = @param_type_name.camelize(:lower) elsif WashOut::Engine.camelize_wsdl @param_type_name = @param_type_name.camelize end @param_type_name end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
wash_out-0.8.4 | lib/wash_out/type.rb |
wash_out-0.8.3 | lib/wash_out/type.rb |
wash_out-0.8.2 | lib/wash_out/type.rb |
wash_out-0.8.1 | lib/wash_out/type.rb |