Class: Array

Inherits:
Object show all
Defined in:
lib/gg/core.rb

Instance Method Summary collapse

Instance Method Details

#to_hi_html(history) ⇒ Object



88
89
90
91
92
# File 'lib/gg/core.rb', line 88

def to_hi_html(history)
  return "...recursive..." if history[self]
  history[self] = true
  GG.render('slim/array.slim', object: self, history: history)
end