Skip to content

Instantly share code, notes, and snippets.

@ymendel
Created July 30, 2010 22:18
Show Gist options
  • Save ymendel/501410 to your computer and use it in GitHub Desktop.
Save ymendel/501410 to your computer and use it in GitHub Desktop.
class User
generator_for :password, :method => :generated_password
generator_for :password_confirmation, :method => :generated_password
generator_for :email, :start => '[email protected]' do |prev|
u, d = prev.split(/@/)
[u.succ, d].join('@')
end
def self.generated_password
's3kr17'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment