Module: StringExt
- Included in:
- String
- Defined in:
- lib/core_ext/string_ext.rb
Instance Method Summary collapse
Instance Method Details
#pagefy ⇒ Object
3 4 5 |
# File 'lib/core_ext/string_ext.rb', line 3 def pagefy normalize.gsub(/[ ]+/,"").downcase end |
#slugify ⇒ Object
7 8 9 |
# File 'lib/core_ext/string_ext.rb', line 7 def slugify normalize.gsub(/[ ]+/," ").gsub(/ /,"-").downcase end |