Module Innate::HelperAccess
In: lib/innate/helper.rb

Provides access to helper method without polluting the name-space any further.

Methods

helper  

Public Instance methods

Convenience method used by Innate::Node.

Usage:

  class Hi
    extend Innate::HelperAccess
    helper :cgi, :link, :aspect
  end

This will require the helpers and call:

    Hi.include(Innate::Helper::CGI)
    Hi.include(Innate::Helper::Link)
    Hi.include(Innate::Helper::Aspect)

[Validate]