Skip to content

Instantly share code, notes, and snippets.

@josip
Created August 16, 2009 19:30
Show Gist options
  • Save josip/168720 to your computer and use it in GitHub Desktop.
Save josip/168720 to your computer and use it in GitHub Desktop.
def generate_slug_from_title
self[:slug] = self[:title].downcase.gsub(/[^a-z0-9]/,'-').squeeze('-').gsub(/^\-|\-$/,'') if new_document?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment