guard-spork 0.1.9 → 0.1.10

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.
data/README.rdoc CHANGED
@@ -1,4 +1,5 @@
1
1
  = Guard::Spork
2
+ http://travis-ci.org/guard/guard-spork.png
2
3
 
3
4
  Guard::Spork allows to automatically & intelligently start/reload your RSpec/Cucumber {Spork}[https://github.com/timcharper/spork] server(s).
4
5
 
@@ -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] ||= nil
13
- options[:cucumber_env] ||= nil
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 || []) { exec(cmd) }
43
+ swap_env(env) { exec(cmd) }
44
44
  end
45
45
  end
46
46
 
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  module SporkVersion
3
- VERSION = "0.1.9"
3
+ VERSION = "0.1.10"
4
4
  end
5
5
  end
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.9
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-17 00:00:00 +02:00
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.6.2
111
+ rubygems_version: 1.5.3
112
112
  signing_key:
113
113
  specification_version: 3
114
114
  summary: Guard gem for Spork