Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/mighty_inspect.rb

Instance Method Summary collapse

Instance Method Details

#mighty_inspectObject



24
25
26
27
28
29
# File 'lib/mighty_inspect.rb', line 24

def mighty_inspect
  "{" + self.map{|k, v|
          MightyInspect.mighty_inspect(k) + " => " +
          MightyInspect.mighty_inspect(v)
        }.join(", ") + "}"
end