god 0.7.21 → 0.7.22

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/History.txt +5 -1
  2. data/VERSION.yml +1 -1
  3. data/bin/god +3 -0
  4. data/god.gemspec +1 -1
  5. metadata +1 -1
@@ -1,4 +1,8 @@
1
- == 0.7.21 / 2009-09-29
1
+ == 0.7.22 / 2009-10-29
2
+ * Minor Enhancements
3
+ * Save ARGV so we can get access to it later if we want [github.com/eric]
4
+
5
+ == 0.7.21 / 2009-10-29
2
6
  * Minor Enhancements
3
7
  * Cache some frequent lookups to reduce object creation [github.com/eric]
4
8
  * Try to make SimpleLogger less leaky [github.com/eric]
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 7
4
- :patch: 21
4
+ :patch: 22
data/bin/god CHANGED
@@ -10,6 +10,9 @@ require 'drb'
10
10
  require 'yaml'
11
11
 
12
12
  begin
13
+ # Save ARGV in case someone wants to use it later
14
+ ORIGINAL_ARGV = ARGV.dup
15
+
13
16
  options = {:daemonize => true, :port => 17165, :syslog => true, :events => true}
14
17
 
15
18
  opts = OptionParser.new do |opts|
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{god}
8
- s.version = "0.7.21"
8
+ s.version = "0.7.22"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tom Preston-Werner"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: god
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.21
4
+ version: 0.7.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Preston-Werner