Created
October 18, 2009 18:57
-
-
Save ismasan/212793 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create a unique, non-numeric ID for your ActiveRecord objects | |
require 'uuid' # http://github.com/assaf/uuid/ | |
class User < ActiveRecord::Base | |
sluggable_finder :hashed_slug #creates slug from custom attribute and stores it in "slug" field | |
def hashed_slug #we define the custom attribute | |
UUID.new.generate | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment