| Paste number 44385: | Singleton |
| Pasted by: | rsinger |
| When: | 1 year, 11 months ago |
| Share: | Tweet this! | http://paste.lisp.org/+Y8X |
| Channel: | #code4lib |
| Paste contents: |
# Dear jrochkind, save me as lib/populator.rb
class Populator
private_class_method :new
@@mystuff = nil
def self.add
@@mystuff = [] unless @@mystuff
@@mystuff << Time.now
end
def self.report
return @@mystuff
end
endThis paste has no annotations.