Mercurial > hg > soundsoftware-site
annotate .svn/pristine/a0/a0fde97b5566af05f8292290fc6fa97613507ae9.svn-base @ 952:12f729c9f47d bibplugin_bibtex
the "authors" div was not closing correctly - fixed now.
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Mon, 06 Aug 2012 12:13:28 +0100 |
parents | cbb26bc654de |
children |
rev | line source |
---|---|
Chris@909 | 1 class TimeEntry < ActiveRecord::Base |
Chris@909 | 2 generator_for(:spent_on) { Date.today } |
Chris@909 | 3 generator_for(:hours) { (rand * 10).round(2) } # 0.01 to 9.99 |
Chris@909 | 4 generator_for :user, :method => :generate_user |
Chris@909 | 5 |
Chris@909 | 6 def self.generate_user |
Chris@909 | 7 User.generate_with_protected! |
Chris@909 | 8 end |
Chris@909 | 9 end |