filecluster 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/fc-daemon +2 -2
- data/lib/fc/version.rb +1 -1
- metadata +3 -3
data/bin/fc-daemon
CHANGED
@@ -22,6 +22,7 @@ $global_daemon_thread = nil
|
|
22
22
|
$update_tasks_thread = nil
|
23
23
|
$run_tasks_thread = nil
|
24
24
|
|
25
|
+
args = ARGV.clone
|
25
26
|
default_db_config = File.expand_path(File.dirname(__FILE__))+'/db.yml'
|
26
27
|
descriptions = {
|
27
28
|
:config => {:short => 'c', :full => 'config', :default => default_db_config, :text => "path to db.yml file, default #{default_db_config}"},
|
@@ -53,7 +54,6 @@ trap("TERM") {quit_on_quit}
|
|
53
54
|
trap("INT") {quit_on_quit}
|
54
55
|
|
55
56
|
|
56
|
-
|
57
57
|
start_time = Time.new.to_i
|
58
58
|
while true do
|
59
59
|
if $exit_signal
|
@@ -66,7 +66,7 @@ while true do
|
|
66
66
|
end
|
67
67
|
$log.info('Exit')
|
68
68
|
if $exit_signal == :restart
|
69
|
-
exec('ruby', __FILE__)
|
69
|
+
exec('ruby', __FILE__, *args)
|
70
70
|
else
|
71
71
|
exit
|
72
72
|
end
|
data/lib/fc/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: filecluster
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -193,7 +193,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
193
193
|
version: '0'
|
194
194
|
segments:
|
195
195
|
- 0
|
196
|
-
hash:
|
196
|
+
hash: -312355588801708268
|
197
197
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
198
198
|
none: false
|
199
199
|
requirements:
|
@@ -202,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
202
202
|
version: '0'
|
203
203
|
segments:
|
204
204
|
- 0
|
205
|
-
hash:
|
205
|
+
hash: -312355588801708268
|
206
206
|
requirements: []
|
207
207
|
rubyforge_project:
|
208
208
|
rubygems_version: 1.8.24
|