Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/string.rb
Instance Method Summary collapse
-
#lr_underscore ⇒ Object
lr_ appended so no method naming conflicts with other gems.
Instance Method Details
#lr_underscore ⇒ Object
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 |