Class: String

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

Instance Method Summary collapse

Instance Method Details

#slugifyObject



54
55
56
# File 'lib/stratus.rb', line 54

def slugify
  downcase.gsub(/&/, ' and ').gsub(/[^a-z0-9']+/, '-').gsub(/^-|-$|'/, '')
end