Class: Array
Instance Method Summary collapse
Instance Method Details
#to_hi_html(history) ⇒ Object
104 105 106 107 108 109 110 |
# File 'lib/gg/core.rb', line 104 def to_hi_html(history) return gg_render_recursive if history.exists?(self)#[self] history.add(self)#[self] = true GG.render('slim/array.slim', object: self, history: history) rescue => e gg_render_error(e) end |