Class: Hash

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

Instance Method Summary collapse

Instance Method Details

#to_hi_html(history) ⇒ Object



116
117
118
119
120
121
122
# File 'lib/gg/core.rb', line 116

def to_hi_html(history)
  return gg_render_recursive if history.exists?(self)#self
  history.add(self) #[self] = true
  GG.render('slim/hash.slim', object: self, history: history)
rescue => e
  gg_render_error(e)
end