Module: Innate::Helper

Defined in:
/home/manveru/github/ramaze/ramaze.net/tmp/git/innate/lib/innate/helper/cgi.rb,
/home/manveru/github/ramaze/ramaze.net/tmp/git/innate/lib/innate/helper/link.rb,
/home/manveru/github/ramaze/ramaze.net/tmp/git/innate/lib/innate/helper/flash.rb,
/home/manveru/github/ramaze/ramaze.net/tmp/git/innate/lib/innate/helper/aspect.rb,
/home/manveru/github/ramaze/ramaze.net/tmp/git/innate/lib/innate/helper/render.rb,
/home/manveru/github/ramaze/ramaze.net/tmp/git/innate/lib/innate/helper/redirect.rb,
/home/manveru/github/ramaze/ramaze.net/tmp/git/innate/lib/innate/helper.rb

Overview

Acts as name-space for helpers

Defined Under Namespace

Modules: Aspect, CGI, Flash, Link, Redirect, Render

Constant Summary

LOOKUP =

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

EXPOSE = Set.new

Class Method Summary (collapse)

Class Method Details

+ (Object) included(into)

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.



11
12
13
14
15
# File '/home/manveru/github/ramaze/ramaze.net/tmp/git/innate/lib/innate/helper.rb', line 11

def self.included(into)
  into.extend(HelperAccess)
  into.__send__(:include, Trinity)
  into.helper(*HelpersHelper.options[:default])
end