From 8880188001da23a5f0960e3970c4eb9bbd448306 Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Sun, 23 Feb 2014 19:11:29 +0200 Subject: Migrate to sinatra/puma from webrick As I can't do IO#select on sinatra/puma to run it when I have time, I have to run it on separate thread. This means Nodes container needs to be thread safe, it now has ghetto mutex locking, but I probably need to be be more focused what are the external methods that can be called and wrap those in @mutex.synchronize Provide also HTML UI not just JSON for ghetto UI to people who don't want to integrate --- oxidized.gemspec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'oxidized.gemspec') diff --git a/oxidized.gemspec b/oxidized.gemspec index cd324f1..4c6839a 100644 --- a/oxidized.gemspec +++ b/oxidized.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'oxidized' - s.version = '0.0.20' + s.version = '0.0.21' s.platform = Gem::Platform::RUBY s.authors = [ 'Saku Ytti' ] s.email = %w( saku@ytti.fi ) @@ -16,4 +16,8 @@ Gem::Specification.new do |s| s.add_dependency 'sqlite3' s.add_dependency 'net-ssh' s.add_dependency 'grit' + s.add_dependency 'sinatra' + s.add_dependency 'haml' + s.add_dependency 'puma' + end -- cgit v1.2.1