module Innate::Helper

Acts as name-space for helpers

Shortcuts to some CGI methods

Constants

LOOKUP

Public instance methods of helpers in here will be recognized as actions

Public Class Methods

included(into) click to toggle source

Usually called from Innate::Node.included We also include Innate::Trinity here, as it may be needed in models when you use helper methods there.

# File lib/innate/helper.rb, line 11
def self.included(into)
  into.extend(HelperAccess)
  into.__send__(:include, Trinity)
  into.helper(*HelpersHelper.options[:default])
end