Method: Innate::Node.included

Defined in:
lib/innate/node.rb

.included(into) ⇒ Object

Upon inclusion we make ourselves comfortable.



58
59
60
61
62
63
64
65
66
67
# File 'lib/innate/node.rb', line 58

def self.included(into)
  into.__send__(:include, Helper)
  into.extend(Trinity, self)

  NODE_LIST << into

  return if into.provide_set?
  into.provide(:html, :engine => :Etanni)
  into.trait(:provide_set => false)
end