##// END OF EJS Templates
Allow a config/additional_environment.rb file to customize the Rails::Initializer....
Allow a config/additional_environment.rb file to customize the Rails::Initializer. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3018 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2896:5f48256c20cc
r2904:e02caeab0f07
Show More
user_exemplar.rb
30 lines | 648 B | text/x-ruby | RubyLexer
class User < Principal
generator_for :login, :method => :next_login
generator_for :mail, :method => :next_email
generator_for :firstname, :method => :next_firstname
generator_for :lastname, :method => :next_lastname
def self.next_login
@gen_login ||= 'user1'
@gen_login.succ!
@gen_login
end
def self.next_email
@last_email ||= 'user1'
@last_email.succ!
"#{@last_email}@example.com"
end
def self.next_firstname
@last_firstname ||= 'Bob'
@last_firstname.succ!
@last_firstname
end
def self.next_lastname
@last_lastname ||= 'Doe'
@last_lastname.succ!
@last_lastname
end
end