Skip to content

Instantly share code, notes, and snippets.

@manleyhimself
Created December 15, 2013 01:58
Show Gist options
  • Save manleyhimself/7967783 to your computer and use it in GitHub Desktop.
Save manleyhimself/7967783 to your computer and use it in GitHub Desktop.
module SlimySlug
extend ActiveSupport::Concern
included do
before_save :set_slug
end
def set_slug
self.slug = self.name.downcase.gsub('.','').gsub(' ','-')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment