cutest 1.1.1 → 1.1.2

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 (3) hide show
  1. data/cutest.gemspec +1 -1
  2. data/lib/cutest.rb +2 -1
  3. metadata +2 -2
data/cutest.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "cutest"
3
- s.version = "1.1.1"
3
+ s.version = "1.1.2"
4
4
  s.summary = "Forking tests."
5
5
  s.description = "Run tests in separate processes to avoid shared state."
6
6
  s.authors = ["Damian Janowski", "Michel Martens"]
data/lib/cutest.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  class Cutest
2
- VERSION = "1.1.1"
2
+ VERSION = "1.1.2"
3
3
  REQUIREMENTS = []
4
4
  FILTER = %r[/(ruby|jruby|rbx)[-/]([0-9\.])+]
5
5
  CACHE = Hash.new { |h, k| h[k] = File.readlines(k) }
@@ -68,6 +68,7 @@ class Cutest
68
68
  def self.display_error
69
69
  print Color.title("\n\n#{$!.class}: ")
70
70
  print Color.exception("#{$!.message}\n\n")
71
+ print Color.reset
71
72
  end
72
73
 
73
74
  def self.display_trace(line)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: cutest
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.1
5
+ version: 1.1.2
6
6
  platform: ruby
7
7
  authors:
8
8
  - Damian Janowski
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2011-05-07 00:00:00 Z
14
+ date: 2011-05-12 00:00:00 Z
15
15
  dependencies: []
16
16
 
17
17
  description: Run tests in separate processes to avoid shared state.