spiderfw 0.6.7 → 0.6.8
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/CHANGELOG +4 -0
- data/VERSION +1 -1
- data/lib/spiderfw/spider.rb +1 -1
- metadata +3 -3
data/CHANGELOG
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.8
|
data/lib/spiderfw/spider.rb
CHANGED
@@ -185,7 +185,7 @@ module Spider
|
|
185
185
|
end
|
186
186
|
trap('TERM'){ Spider.main_process_shutdown; exit }
|
187
187
|
trap('INT'){ Spider.main_process_shutdown; exit }
|
188
|
-
trap('HUP'){ Spider.respawn! }
|
188
|
+
trap('HUP'){ Spider.respawn! } unless RUBY_PLATFORM =~ /win32|mingw32/
|
189
189
|
|
190
190
|
if @main_process_startup_blocks
|
191
191
|
@main_process_startup_blocks.each{ |block| block.call }
|
metadata
CHANGED