Skip to content

Commit

Permalink
up to 0.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mojombo committed Nov 14, 2008
1 parent 231c0ef commit b2b591f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion History.txt
@@ -1,4 +1,6 @@
== 0.7.10 /
== 0.7.10 / 2008-11-13
* Major Enhancements
* Enable sending of arbitrary signals to a task or group via `god signal`
* Bug Fixes
* setup logging *after* loading a given config file when daemonized.
enables logging to the 'God.log_file' specified in a config file. [github.com/jnewland]
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
@@ -1,7 +1,7 @@
require 'rubygems'
require 'hoe'

Hoe.new('god', '0.7.9') do |p|
Hoe.new('god', '0.7.10') do |p|
p.rubyforge_name = 'god'
p.author = 'Tom Preston-Werner'
p.email = 'tom@rubyisawesome.com'
Expand Down
4 changes: 2 additions & 2 deletions god.gemspec
@@ -1,10 +1,10 @@
Gem::Specification.new do |s|
s.name = %q{god}
s.version = "0.7.9"
s.version = "0.7.10"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tom Preston-Werner"]
s.date = %q{2008-06-23}
s.date = %q{2008-11-13}
s.default_executable = %q{god}
s.description = %q{God is an easy to configure, easy to extend monitoring framework written in Ruby.}
s.email = %q{tom@rubyisawesome.com}
Expand Down
2 changes: 1 addition & 1 deletion lib/god.rb
Expand Up @@ -148,7 +148,7 @@ def safe_attr_accessor(*args)
end

module God
VERSION = '0.7.9'
VERSION = '0.7.10'

LOG_BUFFER_SIZE_DEFAULT = 100
PID_FILE_DIRECTORY_DEFAULTS = ['/var/run/god', '~/.god/pids']
Expand Down

0 comments on commit b2b591f

Please sign in to comment.