method
qualified_const_get
v4.2.7 -
Show latest stable
- Class:
Module
qualified_const_get(path)public
No documentation available.
# File activesupport/lib/active_support/core_ext/module/qualified_const.rb, line 36
def qualified_const_get(path)
QualifiedConstUtils.raise_if_absolute(path)
QualifiedConstUtils.names(path).inject(self) do |mod, name|
mod.const_get(name)
end
end