Class: Hash
Direct Known Subclasses
Instance Method Summary collapse
Instance Method Details
#to_hi_html(history) ⇒ Object
110 111 112 113 114 115 116 |
# File 'lib/gg/core.rb', line 110 def to_hi_html(history) return "...recursive..." if history[self] history[self] = true GG.render('slim/hash.slim', object: self, history: history) rescue => e gg_render_error(e) end |