Class: Saxaphone::Util

Inherits:
Object
  • Object
show all
Defined in:
lib/saxaphone/util.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.constantize(camel_cased_word) ⇒ Object



4
5
6
7
8
9
10
11
12
13
# File 'lib/saxaphone/util.rb', line 4

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 = standardized_const_defined?(constant, name) ? constant.const_get(name) : constant.const_missing(name)
  end
  constant
end

Instance Method Details

#standardized_const_defined?(constant, name) ⇒ Boolean

Returns:

  • (Boolean)


16
17
18
# File 'lib/saxaphone/util.rb', line 16

def standardized_const_defined?(constant, name)
  constant.const_defined?(name)
end