Skip to content

Instantly share code, notes, and snippets.

@ismasan
Created October 18, 2009 18:57
Show Gist options
  • Save ismasan/212793 to your computer and use it in GitHub Desktop.
Save ismasan/212793 to your computer and use it in GitHub Desktop.
# 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