From 9d217025fac3e335c308f02e7377e14ccfdc0e66 Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Wed, 17 Apr 2013 17:48:50 +0300 Subject: Initial commit Silly for shit-and-giggles attempt at rancid --- lib/oxidized/core.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lib/oxidized/core.rb (limited to 'lib/oxidized/core.rb') diff --git a/lib/oxidized/core.rb b/lib/oxidized/core.rb new file mode 100644 index 0000000..76aa330 --- /dev/null +++ b/lib/oxidized/core.rb @@ -0,0 +1,21 @@ +module Oxidized + require 'oxidized/log' + require 'oxidized/config/core' + require 'oxidized/worker' + require 'oxidized/nodes' + require 'oxidized/manager' + class << self + def new *args + Core.new args + end + end + + class Core + def initialize args + Oxidized.mgr = Manager.new + nodes = Nodes.new + worker = Worker.new nodes + loop { worker.work; sleep 1 } + end + end +end -- cgit v1.2.1