Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/merb-ext/other.rb
Instance Method Summary collapse
Instance Method Details
#to_permalink ⇒ Object
3 4 5 |
# File 'lib/merb-ext/other.rb', line 3 def to_permalink Iconv.iconv('ascii//translit//IGNORE', 'utf-8', self).first.gsub("'", "").gsub(/[^\x00-\x7F]+/, '').gsub(/[^a-zA-Z0-9-]+/, '-').gsub(/^-/, '').gsub(/-$/, '').downcase end |