Class: String

Inherits:
Object show all
Defined in:
lib/nmatrix/monkeys.rb

Instance Method Summary collapse

Instance Method Details

#underscoreObject



121
122
123
124
125
126
127
# File 'lib/nmatrix/monkeys.rb', line 121

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