spec_run_queue 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +3 -0
- data/lib/spec_run_queue/system_runner.rb +2 -2
- data/lib/spec_run_queue/version.rb +1 -1
- metadata +7 -7
data/README.markdown
CHANGED
@@ -39,6 +39,9 @@ end
|
|
39
39
|
If you do not provide a configuration, the runner will assume a binary of `rspec` and
|
40
40
|
use the stdout notifier.
|
41
41
|
|
42
|
+
Note, if you wish to use `ruby-growl` for notifications, you currently must specify a
|
43
|
+
the ~> 3.0 series of the gem yourself.
|
44
|
+
|
42
45
|
USAGE
|
43
46
|
=====
|
44
47
|
|
@@ -22,7 +22,7 @@ module SpecRunQueue
|
|
22
22
|
end
|
23
23
|
|
24
24
|
begin
|
25
|
-
cmd = "#{rspec_bin} -f nested --drb"
|
25
|
+
cmd = "#{rspec_bin} -f nested --drb"
|
26
26
|
cmd << " -l #{instruction[:line]}" if instruction[:line]
|
27
27
|
cmd << " #{instruction[:target]}"
|
28
28
|
puts "Running command #{cmd}"
|
@@ -60,7 +60,7 @@ module SpecRunQueue
|
|
60
60
|
|
61
61
|
def sane_instruction?(instruction)
|
62
62
|
# Line must be numeric or nil, and the target must be a path to a spec file
|
63
|
-
(instruction[:line].nil? || instruction[:line].to_s =~
|
63
|
+
(instruction[:line].nil? || instruction[:line].to_s =~ /\A\d+\z/) &&
|
64
64
|
(instruction[:target] =~ /^[a-z0-9_\-\/]+_spec\.rb$/)
|
65
65
|
end
|
66
66
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spec_run_queue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2013-02-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: redis
|
16
|
-
requirement: &
|
16
|
+
requirement: &2160515760 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *2160515760
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rspec
|
27
|
-
requirement: &
|
27
|
+
requirement: &2160515240 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *2160515240
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: ruby-growl
|
38
|
-
requirement: &
|
38
|
+
requirement: &2160514680 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3.0'
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *2160514680
|
47
47
|
description: Use a queue to run specs outside your editor
|
48
48
|
email:
|
49
49
|
- xternal1+github@gmail.com
|