class String
Public Instance Methods
constantize()
click to toggle source
# File lib/feature_flagger/core_ext.rb, line 6 def constantize names = split('::') names.shift if names.empty? || names.first.empty? constant = Object names.each do |name| constant = constant.const_defined?(name) ? constant.const_get(name) : constant.const_missing(name) end constant end