Skip to content

Instantly share code, notes, and snippets.

@madwork
Created October 29, 2012 16:10
Show Gist options
  • Save madwork/3974516 to your computer and use it in GitHub Desktop.
Save madwork/3974516 to your computer and use it in GitHub Desktop.
Urlize
module Urlize
def urlize
self.gsub(/[^[:alnum:]\-\s\_]/, '').split(/[\s\-\_]+/).delete_if{|i| i.empty?}.join('-').downcase
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment