From 2d124b74538f19681c619e4a807f60176ab2d869 Mon Sep 17 00:00:00 2001 From: Azul Date: Tue, 11 Sep 2012 15:47:00 +0200 Subject: Filling the pool with up to 10 certs --- lib/cert.rb | 3 +++ lib/pool.rb | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 lib/pool.rb (limited to 'lib') diff --git a/lib/cert.rb b/lib/cert.rb index c937fb8..80adfbb 100644 --- a/lib/cert.rb +++ b/lib/cert.rb @@ -15,6 +15,9 @@ class Cert < CouchRest::Model::Base validates :zipped, :presence => true + design do + end + def set_random self.random = rand end diff --git a/lib/pool.rb b/lib/pool.rb new file mode 100644 index 0000000..76c1963 --- /dev/null +++ b/lib/pool.rb @@ -0,0 +1,19 @@ +require 'yaml' + +module LeapCA + class Pool + def initialize(filename) + @config = YAML.load(File.open(filename, 'r')) + end + + def fill + while Cert.count < self.size do + Cert.create! + end + end + + def size + @config[:size] ||= 10 + end + end +end -- cgit v1.2.3