Class: ActiveSupport::XMLConverter

Inherits:
Object
  • Object
show all
Defined in:
activesupport/lib/active_support/core_ext/hash/conversions.rb

Overview

:nodoc:

Defined Under Namespace

Classes: DisallowedType

Constant Summary collapse

DISALLOWED_TYPES =
%w(symbol yaml)

Instance Method Summary collapse

Constructor Details

#initialize(xml, disallowed_types = nil) ⇒ XMLConverter

Returns a new instance of XMLConverter.



131
132
133
134
# File 'activesupport/lib/active_support/core_ext/hash/conversions.rb', line 131

def initialize(xml, disallowed_types = nil)
  @xml = normalize_keys(XmlMini.parse(xml))
  @disallowed_types = disallowed_types || DISALLOWED_TYPES
end

Instance Method Details

#to_hObject



136
137
138
# File 'activesupport/lib/active_support/core_ext/hash/conversions.rb', line 136

def to_h
  deep_to_h(@xml)
end