class String

Public Instance Methods

constantize() click to toggle source
# 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
demodulize() click to toggle source
# File lib/ext/string.rb, line 13
def demodulize
  if i = self.rindex('::')
    self[(i+2)..-1]
  else
    self
  end
end