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.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/VERSION +1 -1
  3. data/lib/spiderfw/spider.rb +1 -1
  4. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ = 0.6.8
2
+ == 26 July, 2011
3
+ * Windows fix (no HUP trapping)
4
+
1
5
  = 0.6.7
2
6
  == 26 July, 2011
3
7
  * Process management and app setup enhancements
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.7
1
+ 0.6.8
@@ -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
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spiderfw
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 23
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 7
10
- version: 0.6.7
9
+ - 8
10
+ version: 0.6.8
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ivan Pirlik