From 15356a2e85608a529271765eed7176f8ea3a0d40 Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Fri, 13 Jan 2012 14:53:52 -0800 Subject: [PATCH] Release 0.12.0 --- History.txt | 3 ++- god.gemspec | 11 ++++++----- lib/god.rb | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/History.txt b/History.txt index 28e46d7b..e6b01eb1 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,4 @@ -== HEAD +== 0.12.0 * Minor Enhancements * Add umask support * Add socket response condition (#25) @@ -7,6 +7,7 @@ * Add keepalive simple conditional setups (#71) * Better load command to act upon removed watches (#70) * Add support for ssl in http_response_code condition (#36) + * New documentation at http://godrb.com * Bug Fixes * Use IO.print instead of IO.puts for thread safety (#35) * Fix Slashproc poller for commands with spaces (#31) diff --git a/god.gemspec b/god.gemspec index 73c7d4c7..819ad8df 100644 --- a/god.gemspec +++ b/god.gemspec @@ -3,8 +3,8 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.name = 'god' - s.version = '0.11.0' - s.date = '2011-12-02' + s.version = '0.12.0' + s.date = '2012-01-13' s.summary = "Process monitoring framework." s.description = "An easy to configure, easy to extend monitoring framework written in Ruby." @@ -45,6 +45,8 @@ Gem::Specification.new do |s| README.md Rakefile bin/god + doc/god.asciidoc + doc/intro.asciidoc ext/god/.gitignore ext/god/extconf.rb ext/god/kqueue_handler.c @@ -83,8 +85,6 @@ Gem::Specification.new do |s| lib/god/contacts/scout.rb lib/god/contacts/twitter.rb lib/god/contacts/webhook.rb - lib/god/dependency_graph.rb - lib/god/diagnostics.rb lib/god/driver.rb lib/god/errors.rb lib/god/event_handler.rb @@ -121,6 +121,8 @@ Gem::Specification.new do |s| test/configs/daemon_polls/simple_server.rb test/configs/degrading_lambda/degrading_lambda.god test/configs/degrading_lambda/tcp_server.rb + test/configs/keepalive/keepalive.god + test/configs/keepalive/keepalive.rb test/configs/lifecycle/lifecycle.god test/configs/matias/matias.god test/configs/real.rb @@ -143,7 +145,6 @@ Gem::Specification.new do |s| test/test_conditions_socket_responding.rb test/test_conditions_tries.rb test/test_contact.rb - test/test_dependency_graph.rb test/test_driver.rb test/test_email.rb test/test_event_handler.rb diff --git a/lib/god.rb b/lib/god.rb index d07503b7..4658f229 100644 --- a/lib/god.rb +++ b/lib/god.rb @@ -151,7 +151,7 @@ def safe_attr_accessor(*args) module God # The String version number for this package. - VERSION = '0.11.0' + VERSION = '0.12.0' # The Integer number of lines of backlog to keep for the logger. LOG_BUFFER_SIZE_DEFAULT = 100