Mercurial > hg > soundsoftware-site
view test/exemplars/user_exemplar.rb @ 1192:3c9ca27c2d3d feature_564
Add approximate back-of-envelope calculation of project maturity
author | Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
---|---|
date | Tue, 22 Jan 2013 16:51:56 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
class User < Principal generator_for :login, :start => 'user1' generator_for :mail, :method => :next_email generator_for :firstname, :start => 'Bob' generator_for :lastname, :start => 'Doe' def self.next_email @last_email ||= 'user1' @last_email.succ! "#{@last_email}@example.com" end end