class SweetLoader::Scope

Attributes

autoload_options[R]
the_module[R]

Public Class Methods

new(the_module, options = {}) click to toggle source
# File lib/sweetloader/scope.rb, line 7
def initialize the_module, options = {}
  @the_module = the_module
  @autoload_options = options
end

Public Instance Methods

name() click to toggle source
# File lib/sweetloader/scope.rb, line 12
def name
  the_module.name
end