module XmlHasher::Configurable

Constants

KEYS

Attributes

ignore_namespaces[W]
snakecase[W]
string_keys[W]

Public Instance Methods

configure() { |self| ... } click to toggle source
# File lib/xmlhasher/configurable.rb, line 9
def configure
  yield self
  self
end

Private Instance Methods

options() click to toggle source
# File lib/xmlhasher/configurable.rb, line 16
def options
  XmlHasher::Configurable::KEYS.each_with_object({}) do |key, hash|
    hash[key] = instance_variable_get(:"@#{key}")
  end
end