dbox 0.6.8 → 0.6.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ == 0.6.9 / 2012-04-09
2
+ * Minor Enhancements
3
+ * Added cleanup of worker threads on abnormal termination.
4
+
1
5
  == 0.6.8 / 2012-04-02
2
6
  * Minor Enhancements
3
7
  * Added retries after receiving HTTPServiceUnavailable from Dropbox API.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.6.8
1
+ 0.6.9
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "dbox"
8
- s.version = "0.6.8"
8
+ s.version = "0.6.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ken Pratt"]
12
- s.date = "2012-04-03"
12
+ s.date = "2012-04-09"
13
13
  s.description = "An easy-to-use Dropbox client with fine-grained control over syncs."
14
14
  s.email = "ken@kenpratt.net"
15
15
  s.executables = ["dbox"]
@@ -69,6 +69,12 @@ class ParallelTasks
69
69
 
70
70
  def finish
71
71
  @done_making_tasks = true
72
- @workers.each {|t| t.join }
72
+ begin
73
+ @workers.each {|t| t.join }
74
+ rescue Exception => e
75
+ log.error "Error waiting for workers to complete tasks: #{e.inspect}"
76
+ @workers.each {|t| t.kill }
77
+ raise e
78
+ end
73
79
  end
74
80
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dbox
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 8
10
- version: 0.6.8
9
+ - 9
10
+ version: 0.6.9
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ken Pratt
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2012-04-03 00:00:00 Z
18
+ date: 2012-04-09 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: multipart-post