Class: String

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

Instance Method Summary collapse

Instance Method Details

#underscoreObject



31
32
33
34
35
36
37
# File 'lib/reader.rb', line 31

def underscore
  self.gsub(/::/, '/').
    gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
    gsub(/([a-z\d])([A-Z])/,'\1_\2').
    tr("-", "_").
    downcase
end