guard-minitest 2.0.0 → 2.0.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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/guard/minitest/runner.rb +7 -7
- data/lib/guard/minitest/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: 5d335009c134d780360a7daae843641ae8b49498
|
4
|
+
data.tar.gz: 1a35749ac86394a9e4666d061c936628507f3417
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc8e650a6bfecb91f220298ae507c2de26ca1005b964ef3cbf126f86bf7f9214d72d7d0396c92e93e94407e87c835ac967bb6e72785a16a94542597e7306fe07
|
7
|
+
data.tar.gz: 117339e9c95aaa6a232dd3bdff39370eabce536ddf4e023efbc4f428b691ca8db10ce98767a3e7be8173d53a219d13c73434b9b3c053b53cc1bd7f3b59e8af16
|
data/README.md
CHANGED
@@ -173,7 +173,7 @@ For questions please join us in our [Google group](http://groups.google.com/grou
|
|
173
173
|
|
174
174
|
## Maintainer
|
175
175
|
|
176
|
-
[Rémy Coutable](https://github.com/rymai)
|
176
|
+
[Rémy Coutable](https://github.com/rymai)
|
177
177
|
|
178
178
|
## Author
|
179
179
|
|
@@ -33,13 +33,13 @@ module Guard
|
|
33
33
|
message = options[:message] || "Running: #{paths.join(' ')}"
|
34
34
|
UI.info message, reset: true
|
35
35
|
|
36
|
-
status = if
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
36
|
+
status = if defined?(::Bundler)
|
37
|
+
::Bundler.with_clean_env do
|
38
|
+
system(minitest_command(paths))
|
39
|
+
end
|
40
|
+
else
|
41
|
+
system(minitest_command(paths))
|
42
|
+
end
|
43
43
|
|
44
44
|
# When using zeus or spring, the Guard::Minitest::Reporter can't be used because the minitests run in another
|
45
45
|
# process, but we can use the exit status of the client process to distinguish between :success and :failed.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-minitest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yann Lugrin
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-11-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: guard
|
@@ -94,7 +94,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
94
94
|
version: '0'
|
95
95
|
requirements: []
|
96
96
|
rubyforge_project:
|
97
|
-
rubygems_version: 2.
|
97
|
+
rubygems_version: 2.1.10
|
98
98
|
signing_key:
|
99
99
|
specification_version: 4
|
100
100
|
summary: Guard plugin for the Minitest framework
|