Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/postview/extensions.rb
Instance Method Summary collapse
-
#clean ⇒ Object
Clean all spaces, non-words and digits.
Instance Method Details
#clean ⇒ Object
Clean all spaces, non-words and digits.
13 14 15 |
# File 'lib/postview/extensions.rb', line 13 def clean gsub(/[ \W\d]/,'').downcase end |