Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/unitwise/ext/string.rb
Instance Method Summary collapse
Instance Method Details
#to_slug ⇒ Object
2 3 4 |
# File 'lib/unitwise/ext/string.rb', line 2 def to_slug self.downcase.strip.gsub(/\s/, '_').gsub(/\W/, '') end |