guard-spork 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -0
- data/lib/guard/spork/runner.rb +3 -3
- data/lib/guard/spork/version.rb +1 -1
- metadata +3 -3
data/README.rdoc
CHANGED
data/lib/guard/spork/runner.rb
CHANGED
@@ -9,8 +9,8 @@ module Guard
|
|
9
9
|
options[:wait] ||= 20 # seconds
|
10
10
|
options[:rspec_port] ||= 8989
|
11
11
|
options[:cucumber_port] ||= 8990
|
12
|
-
options[:rspec_env] ||=
|
13
|
-
options[:cucumber_env] ||=
|
12
|
+
options[:rspec_env] ||= {}
|
13
|
+
options[:cucumber_env] ||= {}
|
14
14
|
@options = options
|
15
15
|
@children = {}
|
16
16
|
|
@@ -40,7 +40,7 @@ module Guard
|
|
40
40
|
if RUBY_VERSION > "1.9"
|
41
41
|
exec(env, cmd)
|
42
42
|
else
|
43
|
-
swap_env(env
|
43
|
+
swap_env(env) { exec(cmd) }
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
data/lib/guard/spork/version.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: guard-spork
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.1.
|
5
|
+
version: 0.1.10
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Thibaud Guillaume-Gentil
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-04-
|
13
|
+
date: 2011-04-18 00:00:00 +02:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -108,7 +108,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
108
|
requirements: []
|
109
109
|
|
110
110
|
rubyforge_project: guard-spork
|
111
|
-
rubygems_version: 1.
|
111
|
+
rubygems_version: 1.5.3
|
112
112
|
signing_key:
|
113
113
|
specification_version: 3
|
114
114
|
summary: Guard gem for Spork
|