guard-minitest 2.4.3 → 2.4.4

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: dcc495e0ea2932c1ab9c7c012d783daa85bf2e15
4
- data.tar.gz: 3de792938d8a06d656afa759c05785a4b4cf414b
3
+ metadata.gz: ae633ad320fd1d840d3e170b1804686b8eb69d6d
4
+ data.tar.gz: 5a70b7c6ba8b134c77286e48d27579c2e7316afa
5
5
  SHA512:
6
- metadata.gz: ea74b63c79336cd5db930b62cd6a745fa12e5b61f3a63969cc61e0c72aae765389f28dc74540faf83814d874562df966f86b673ced1a81d238fd11dfd7cfc3e5
7
- data.tar.gz: f2fb0caa615b6879522289811988718a2590b541777da544be7ac1d140a16e472721bbd822b9c9bda9dc6b84047fd6d8864483fe6b60daa354ebdb9239afb41a
6
+ metadata.gz: 997ac963c8a039b70133e8f9888dfb887a8d1bb352491516bbf8f2a9a3c454390fe1973ccbb15a67ff0bccbd83f702d5fe37dd75cb3c5e874a22a790b7336629
7
+ data.tar.gz: 9c62ea15ce334d18ad1c3671c9f433a5fd4abcb078c3460866cd78429e785db2dcf1df736ea50f0b09634ca0db09919dfcc9928ceefe9174a3fea4cfc7c41acf
@@ -1,5 +1,5 @@
1
1
  module Guard
2
2
  class MinitestVersion
3
- VERSION = '2.4.3'
3
+ VERSION = '2.4.4'
4
4
  end
5
5
  end
@@ -1,5 +1,8 @@
1
1
  require 'guard/minitest/utils'
2
2
 
3
+ # Require guard unless we're using guard-minitest to test a guard plugin
4
+ require 'guard' unless Dir['guard-*.gemspec'].any?
5
+
3
6
  if ::Guard::Minitest::Utils.minitest_version_gte_5_0_4?
4
7
  require 'guard/minitest/reporter'
5
8
  else
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.4.3
4
+ version: 2.4.4
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: 2015-02-03 00:00:00.000000000 Z
12
+ date: 2015-02-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: guard-compat
OSZAR »