Class: String

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

Instance Method Summary collapse

Instance Method Details

#to_underscoreObject



2
3
4
# File 'lib/enstratus/util.rb', line 2

def to_underscore
  self.dup.gsub(/(.)([A-Z])/,'\1_\2').downcase
end