Class: String

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

Instance Method Summary collapse

Instance Method Details

#lr_underscoreObject

lr_ appended so no method naming conflicts with other gems



2
3
4
5
6
7
# File 'lib/string.rb', line 2

def lr_underscore #lr_ appended so no method naming conflicts with other gems
  self.gsub(/::/, '/').
  gsub(/([A-Z]+)([A-Z][a-z])/,'\1 \2').
  gsub(/([a-z\d])([A-Z])/,'\1 \2').
  downcase
end