1
0
mirror of https://github.com/danbee/slugtastic synced 2025-03-04 08:49:05 +00:00
slugtastic/lib/slugtastic.rb
2011-10-04 15:39:51 +01:00

23 lines
466 B
Ruby

module Slugtastic
def self.included(base)
base.extend ClassMethods
end
def generate_slug(string)
string.downcase.gsub(/ /, '_').gsub(/[^a-z0-9\-_]/, '')
end
module ClassMethods
def has_slug(name, options = { :from => :title })
before_validation do |record|
self[name] = generate_slug(self[options[:from]]) if self[name].nil? or self[name].empty?
end
end
end
end
class ActiveRecord::Base
include Slugtastic
end