Class: String

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

Instance Method Summary collapse

Instance Method Details

#sluggifyObject

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