Module: StringExt

Included in:
String
Defined in:
lib/core_ext/string_ext.rb

Instance Method Summary collapse

Instance Method Details

#pagefyObject



3
4
5
# File 'lib/core_ext/string_ext.rb', line 3

def pagefy
  normalize.gsub(/[ ]+/,"").downcase
end

#slugifyObject



7
8
9
# File 'lib/core_ext/string_ext.rb', line 7

def slugify
  normalize.gsub(/[ ]+/," ").gsub(/ /,"-").downcase
end