Method: Howler::Util.constantize
- Defined in:
- lib/howler/support/util.rb
.constantize(camel_cased_word) ⇒ Object
12 13 14 15 16 17 18 19 20 21 |
# File 'lib/howler/support/util.rb', line 12 def self.constantize(camel_cased_word) names = camel_cased_word.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 |