class Post < ActiveRecord::Base

before_create :generate_slug

protected

def generate_slug
self.slug = self.title.dasherize
end