module DCI::RoleLookup

Private Instance Methods

const_missing(name) click to toggle source

Forward references to constants to the currently executing context

Calls superclass method
# File lib/dci/role_lookup.rb, line 8
def const_missing(name)
  context = DCI::Context.current
  context.respond_to?(name) ? context.__send__(name) : super
end