Method: NsOptions::Namespace#==

Defined in:
lib/ns-options/namespace.rb

#==(other_ns) ⇒ Object



57
58
59
60
61
62
63
# File 'lib/ns-options/namespace.rb', line 57

def ==(other_ns)
  if other_ns.kind_of? Namespace
    self.to_hash == other_ns.to_hash
  else
    super
  end
end