Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/ext/string.rb

Instance Method Summary collapse

Instance Method Details

#constantizeObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/ext/string.rb', line 2

def constantize
  names = self.split('::')
  names.shift if names.empty? || names.first.empty?

  constant = Object
  names.each do |name|
    constant = constant.const_get(name, false) || constant.const_missing(name)
  end
  constant
end

#demodulizeObject



13
14
15
16
17
18
19
# File 'lib/ext/string.rb', line 13

def demodulize
  if i = self.rindex('::')
    self[(i+2)..-1]
  else
    self
  end
end