Module: Resque::Plugins::MultiStepTask::Constantization
- Defined in:
- lib/resque/plugins/multi_step_task/constantization.rb
Instance Method Summary collapse
-
#constantize(camel_cased_word) ⇒ Object
Courtesy ActiveSupport (Ruby on Rails).
Instance Method Details
#constantize(camel_cased_word) ⇒ Object
Courtesy ActiveSupport (Ruby on Rails)
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/resque/plugins/multi_step_task/constantization.rb', line 6 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 |