Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/core_ext/string.rb
Instance Method Summary collapse
-
#sluggify ⇒ Object
Generate the slug version for this string.
Instance Method Details
#sluggify ⇒ Object
Generate the slug version for this string
4 5 6 7 8 |
# File 'lib/core_ext/string.rb', line 4 def sluggify slug = self.downcase.gsub(/[^0-9a-z_ -]/i, '') slug = slug.gsub(/\s+/, '-').squeeze('-') slug end |