spec_run_queue 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/spec_run_queue/system_runner.rb +1 -1
- data/lib/spec_run_queue/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 016a8992f147a1b9935c8d34e66b62254534c3f0
|
4
|
+
data.tar.gz: bd872d7d1e25d026310fc0bee5e070b314bbd387
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4bcd661ba02ef17cd69affbfe875ae37f3482ba4c7e1264851c7079caa74e7554a484f1d026bbcebdf8367453336e81f67f36842d8ba04d4b96120ec5e1a9526
|
7
|
+
data.tar.gz: 3c1a88f0389e9e5903d560e7d1279e47e4eb4470ac077279168181d95f147313bfce18141c4c1a06b29fa7ad72d4f5231f9a5f5b2809a67f3dc68ff2f44bfeb1
|
@@ -65,7 +65,7 @@ module SpecRunQueue
|
|
65
65
|
def sane_instruction?(instruction)
|
66
66
|
# Line must be numeric or nil, and the target must be a path to a spec file
|
67
67
|
(instruction[:line].nil? || instruction[:line].to_s =~ /\A\d+\z/) &&
|
68
|
-
(instruction[:target] =~ /\A[a-z0-9_\-\/]+_spec\.rb\z/)
|
68
|
+
(instruction[:target] =~ /\A[a-z0-9_\-\/]+_spec\.rb\z/i)
|
69
69
|
end
|
70
70
|
end
|
71
71
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spec_run_queue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brendon Murphy
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: redis
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
101
101
|
version: '0'
|
102
102
|
requirements: []
|
103
103
|
rubyforge_project: spec_run_queue
|
104
|
-
rubygems_version: 2.
|
104
|
+
rubygems_version: 2.6.13
|
105
105
|
signing_key:
|
106
106
|
specification_version: 4
|
107
107
|
summary: Use a queue to run specs outside your editor
|