GICodeWarrior-threaded-rspec 0.3.0 → 0.4.0

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.4.0
@@ -23,7 +23,9 @@ module ThreadedRspec
23
23
  threads = []
24
24
  @thread_count.times do
25
25
  threads << Thread.new(queue, @options) do |q, opts|
26
- success &= q.pop.run(opts) while !q.empty?
26
+ while !q.empty?
27
+ success &= q.pop.run(opts)
28
+ end
27
29
  end
28
30
  end
29
31
  threads.each{|t| t.join}
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{threaded-rspec}
8
- s.version = "0.3.0"
8
+ s.version = "0.4.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Rusty Burchfield"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: GICodeWarrior-threaded-rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rusty Burchfield
@@ -45,7 +45,6 @@ files:
45
45
  - threaded-rspec.gemspec
46
46
  has_rdoc: false
47
47
  homepage: http://github.com/GICodeWarrior/threaded-rspec
48
- licenses:
49
48
  post_install_message:
50
49
  rdoc_options:
51
50
  - --charset=UTF-8
@@ -66,7 +65,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
66
65
  requirements: []
67
66
 
68
67
  rubyforge_project:
69
- rubygems_version: 1.3.5
68
+ rubygems_version: 1.2.0
70
69
  signing_key:
71
70
  specification_version: 3
72
71
  summary: Threaded rspec runner