guard-test 2.0.2 → 2.0.3

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: 31c3d82253eb5960bb2c35fbd3761a83d2a48f8f
4
- data.tar.gz: 4610a15cbfa4a63438c48af4c1c7be63d6eac315
3
+ metadata.gz: 8393751db43a5b7980f5f6c2c9ddb67b1dee1fd4
4
+ data.tar.gz: 63bbe7f1e77653bc54b54efdc4570bf7152c8265
5
5
  SHA512:
6
- metadata.gz: 68ed59c4bad52fd34e6e77dd914ee208ab8a30ce19395a56c3f8ec0d837ff80c891507f156d0a6b1dcb0150b1fa0c6b86d9528c3f81eabe2dd35c803b9858163
7
- data.tar.gz: d7785e83492c8922bda89b424178efc065967dc86fc383511b859e22859cdb7b073353c0966c4287f460e109ae46417a6d1b028474921a8e0bb38feb8673beaf
6
+ metadata.gz: ab84c494e1c180a0c2b88ece332ec7d05681700654b24cbd08569165dd58c1e1bc8cee05fa7d1436e4add070ec77a706d4177e7ebfc308e803b7cba082e9715b
7
+ data.tar.gz: e776b5810fa32da61e4806905ac320a667a3ef3e48547ea261d6abf53f583c35922ff2c5029432649d6dc81320eafe791f98f419fe869acca1248d2aa0279bf5
data/README.md CHANGED
@@ -118,7 +118,7 @@ For questions please join us in our [Google group](http://groups.google.com/grou
118
118
 
119
119
  ## Author
120
120
 
121
- [Rémy Coutable](https://github.com/rymai) ([@rymai](http://twitter.com/rymai), [rym.ai](http://rym.ai))
121
+ [Rémy Coutable](https://github.com/rymai)
122
122
 
123
123
  ## Contributors
124
124
 
data/lib/guard/test.rb CHANGED
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  require 'guard'
3
2
  require 'guard/plugin'
4
3
  require 'guard/test/version'
@@ -43,7 +42,7 @@ module Guard
43
42
  @failed_paths = []
44
43
  end
45
44
 
46
- def run_on_changes(paths)
45
+ def run_on_modifications(paths)
47
46
  Inspector.test_paths = @options[:test_paths]
48
47
  paths += @failed_paths if @options[:keep_failed]
49
48
  paths = Inspector.clean(paths)
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  require 'test/unit/ui/console/testrunner'
3
2
  require 'guard/test/notifier'
4
3
 
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  module Guard
3
2
  class Test
4
3
  module Inspector
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  require 'rubygems'
3
2
  require 'guard'
4
3
  require 'guard/plugin'
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  module Guard
3
2
  class Test
4
3
  class Runner
@@ -1,6 +1,5 @@
1
- # encoding: utf-8
2
1
  module Guard
3
2
  module TestVersion
4
- VERSION = '2.0.2'
3
+ VERSION = '2.0.3'
5
4
  end
6
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-test
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rémy Coutable
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-30 00:00:00.000000000 Z
11
+ date: 2013-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: guard
@@ -102,7 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
102
  version: '0'
103
103
  requirements: []
104
104
  rubyforge_project:
105
- rubygems_version: 2.1.10
105
+ rubygems_version: 2.0.3
106
106
  signing_key:
107
107
  specification_version: 4
108
108
  summary: Guard plugin for Test::Unit 2