module ActiveSupport::QualifiedConstUtils
Public Class Methods
names(path)
click to toggle source
# File lib/active_support/core_ext/module/qualified_const.rb, line 13 def self.names(path) path.split('::') end
raise_if_absolute(path)
click to toggle source
# File lib/active_support/core_ext/module/qualified_const.rb, line 9 def self.raise_if_absolute(path) raise NameError.new("wrong constant name #$&") if path =~ /\A::[^:]+/ end