From 5d7abc3f144bc569c89f1af7627f2f88df6009e0 Mon Sep 17 00:00:00 2001 From: Azul Date: Sat, 8 Sep 2012 11:11:43 +0200 Subject: brought over cert skeleton for filling the pool * turned the test into a MiniTest * removed all the parts needed for fetching the cert from the pool --- lib/cert.rb | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lib/cert.rb (limited to 'lib') diff --git a/lib/cert.rb b/lib/cert.rb new file mode 100644 index 0000000..c937fb8 --- /dev/null +++ b/lib/cert.rb @@ -0,0 +1,34 @@ +require 'couchrest_model' + +class Cert < CouchRest::Model::Base + + use_database 'certs' + + timestamps! + + property :random, Float, :accessible => false + + before_validation :set_random, :attach_zip, :on => :create + + validates :random, :presence => true, + :numericality => {:greater_than => 0, :less_than => 1} + + validates :zipped, :presence => true + + def set_random + self.random = rand + end + + def attach_zip + self.create_attachment :file => StringIO.new("dummy cert"), :name => zipname + end + + def zipname + 'cert.zip' + end + + def zipped + attachments[zipname] + end + +end -- cgit v1.2.3