module Reuters::Namespaces::Base

The Base Namespace module is not meant to be directly used as it does not provided any Namespace definitions. Instead, it is included inside other Namespace modules as it provides useful helpers.

Public Class Methods

included(klass) click to toggle source

Extend the including class with the defined class methods.

# File lib/reuters/namespaces/base.rb, line 41
def self.included(klass)
  klass.extend(ClassMethods)
end