Class: Hash
- Inherits:
-
Object
- Object
- Hash
- Defined in:
- lib/mighty_inspect.rb
Instance Method Summary collapse
Instance Method Details
#mighty_inspect ⇒ Object
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 |