module Aef::NamespaceHelper
This module is intended to be included into the Class and/or Module class to make namespace helper methods available in all classes/modules.
Constants
- VERSION
The currently loaded library version
Using Semantic Versioning (2.0.0-rc.1) rules @see semver.org/
Protected Class Methods
included(klass)
click to toggle source
This magic method is automatically called when NamespaceHelper
is included into a class/module to extend Aef::NamespaceHelper::ClassMethods
into the same class/module.
# File lib/aef/namespace_helper.rb, line 44 def self.included(klass) klass.extend(ClassMethods) end