cutest 1.1.0 → 1.1.1

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/bin/cutest +0 -2
  2. data/cutest.gemspec +1 -1
  3. data/lib/cutest.rb +2 -2
  4. metadata +1 -1
data/bin/cutest CHANGED
@@ -1,5 +1,3 @@
1
- #! /usr/bin/env ruby -rubygems
2
-
3
1
  require File.expand_path("../lib/cutest", File.dirname(__FILE__))
4
2
 
5
3
  if ARGV.empty?
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.0"
3
+ s.version = "1.1.1"
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,7 +1,7 @@
1
1
  class Cutest
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  REQUIREMENTS = []
4
- FILTER = %r[/#{RUBY_ENGINE}[-/]([0-9\.])+]
4
+ FILTER = %r[/(ruby|jruby|rbx)[-/]([0-9\.])+]
5
5
  CACHE = Hash.new { |h, k| h[k] = File.readlines(k) }
6
6
 
7
7
  module Color
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: cutest
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.0
5
+ version: 1.1.1
6
6
  platform: ruby
7
7
  authors:
8
8
  - Damian Janowski