Module: ActiveSupport::CoreExtensions::Hash::Conversions
- Defined in:
- lib/ruboss4ruby/active_foo.rb
Overview
refer to: api.rubyonrails.org/ for more details
Instance Method Summary collapse
-
#to_fxml(options = {}) ⇒ Object
Flex friendly XML format, no dashes, etc.
Instance Method Details
#to_fxml(options = {}) ⇒ Object
Flex friendly XML format, no dashes, etc
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/ruboss4ruby/active_foo.rb', line 32 def to_fxml( = {}) .merge!(:dasherize => false) [:indent] ||= 2 .reverse_merge!({ :builder => Builder::XmlMarkup.new(:indent => [:indent]), :root => "hash" }) [:builder].instruct! unless .delete(:skip_instruct) dasherize = !.has_key?(:dasherize) || [:dasherize] root = dasherize ? [:root].to_s.dasherize : [:root].to_s [:builder].__send__(:method_missing, root) do each do |key, value| case value when ::Hash value.to_fxml(.merge({ :root => key, :skip_instruct => true })) when ::Array value.to_fxml(.merge({ :root => key, :children => key.to_s.singularize, :skip_instruct => true})) when ::Method, ::Proc # If the Method or Proc takes two arguments, then # pass the suggested child element name. This is # used if the Method or Proc will be operating over # multiple records and needs to create an containing # element that will contain the objects being # serialized. if 1 == value.arity value.call(.merge({ :root => key, :skip_instruct => true })) else value.call(.merge({ :root => key, :skip_instruct => true }), key.to_s.singularize) end else if value.respond_to?(:to_fxml) value.to_fxml(.merge({ :root => key, :skip_instruct => true })) else type_name = XML_TYPE_NAMES[value.class.name] key = dasherize ? key.to_s.dasherize : key.to_s attributes = [:skip_types] || value.nil? || type_name.nil? ? { } : { :type => type_name } if value.nil? attributes[:nil] = true end [:builder].tag!(key, XML_FORMATTING[type_name] ? XML_FORMATTING[type_name].call(value) : value, attributes ) end end end yield [:builder] if block_given? end end |