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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8308aeddb063ce0a12c9d7aa4b7990de887948d9
4
- data.tar.gz: a00dfa00127aaf7b544357223ee1a927c3ce3e1d
3
+ metadata.gz: 5d335009c134d780360a7daae843641ae8b49498
4
+ data.tar.gz: 1a35749ac86394a9e4666d061c936628507f3417
5
5
  SHA512:
6
- metadata.gz: 95c459ca998633f44f327f1ff54e7767fcc1554028b87477b09a560b146dfc06ec4860e4c0060a9bbd9fe2be872884ae485ed512b7c4a8a88336835387b7ed8f
7
- data.tar.gz: d4598891b85838908be7a885e4ccc6a42a57b887a35614d578b3891e5c6a3c5aff38ceb685e482ab54d28dd0f86063a40e177c10f69df07fa538f3044a741cbf
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) ([@rymai](http://twitter.com/rymai), [rym.ai](http://rym.ai))
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 bundler?
37
- system(minitest_command(paths))
38
- else
39
- Bundler.with_clean_env do
40
- system(minitest_command(paths))
41
- end
42
- end
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.
@@ -1,7 +1,7 @@
1
1
  module Guard
2
2
  class MinitestVersion
3
3
 
4
- VERSION = '2.0.0'
4
+ VERSION = '2.0.1'
5
5
 
6
6
  end
7
7
  end
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.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-10-05 00:00:00.000000000 Z
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.0.7
97
+ rubygems_version: 2.1.10
98
98
  signing_key:
99
99
  specification_version: 4
100
100
  summary: Guard plugin for the Minitest framework
OSZAR »