Method: Xignite::Helpers#constantize
- Defined in:
- lib/xignite/helpers.rb
#constantize(camel_cased_word) ⇒ Object
active_support/inflector/methods.rb
16 17 18 19 20 21 22 23 24 25 |
# File 'lib/xignite/helpers.rb', line 16 def 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 |