Parent

String

Public Instance Methods

classify() click to toggle source

Gets the constant when it is defined that corresponds to this string

# File lib/core_ext/string.rb, line 13
  def classify
    Object.const_get self
  end
underscore() click to toggle source

converts a camel cased word to an underscored word

# File lib/core_ext/string.rb, line 4
  def underscore
    self.gsub(/::/, '/').
        gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
        gsub(/([a-z\d])([A-Z])/,'\1_\2').
        tr("-", "_").
        downcase
  end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.