Module: Xignite::Helpers

Included in:
Array, Hash, Service, Service
Defined in:
lib/xignite/helpers.rb

Instance Method Summary collapse

Instance Method Details

#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

#underscore(camel_cased_word) ⇒ Object

active_support/inflector/methods.rb



5
6
7
8
9
10
11
12
13
# File 'lib/xignite/helpers.rb', line 5

def underscore(camel_cased_word)
  word = camel_cased_word.to_s.dup
  word.gsub!(/::/, '/')
  word.gsub!(/([A-Z]+)([A-Z][a-z])/,'\1_\2')
  word.gsub!(/([a-z\d])([A-Z])/,'\1_\2')
  word.tr!("-", "_")
  word.downcase!
  word
end