Method: String#constantize
- Defined in:
-
lib/credentials.rb,
lib/credentials.rb
18 19 20 21 22 23 24 25 26 27 |
# File 'lib/credentials.rb', line 18 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 |