Skip to content

Commit

Permalink
Release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mojombo committed Jan 13, 2012
1 parent 5d83949 commit 15356a2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion History.txt
@@ -1,4 +1,4 @@
== HEAD
== 0.12.0
* Minor Enhancements
* Add umask support
* Add socket response condition (#25)
Expand All @@ -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)
Expand Down
11 changes: 6 additions & 5 deletions god.gemspec
Expand Up @@ -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."
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/god.rb
Expand Up @@ -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
Expand Down

0 comments on commit 15356a2

Please sign in to comment.