guard-test 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +52 -33
- data/lib/guard/test/inspector.rb +2 -1
- data/lib/guard/test/version.rb +1 -1
- metadata +10 -10
data/CHANGELOG.md
CHANGED
@@ -1,55 +1,61 @@
|
|
1
|
+
## 0.6.0 - November 3, 2012
|
2
|
+
|
3
|
+
### New feature:
|
4
|
+
|
5
|
+
- [#34][]: Support for *_tests.rb ([@pastorius][])
|
6
|
+
|
1
7
|
## 0.5.0 - June 2, 2012
|
2
8
|
|
3
9
|
### Bug fix:
|
4
10
|
|
5
|
-
- [#24]
|
11
|
+
- [#24][]: Add note for Rails projects using profile/benchmark tests in README. ([@coderjoe][])
|
6
12
|
|
7
13
|
### Changes:
|
8
14
|
|
9
|
-
- Updated for Guard 1.1
|
15
|
+
- Updated for Guard 1.1. ([@rymai][])
|
10
16
|
|
11
17
|
### New feature:
|
12
18
|
|
13
|
-
- [#20]
|
19
|
+
- [#20][]: Add the `:rubygems` options for projects that don't use Bundler. ([@rymai][])
|
14
20
|
|
15
|
-
## 0.4.3 - December 19, 2011
|
21
|
+
## 0.4.3 - December 19, 2011
|
16
22
|
|
17
23
|
### Bug fix:
|
18
24
|
|
19
|
-
- [#21]
|
25
|
+
- [#21][]: Guard::Test::Notifier.notify - did not use :failed image if test results included errors but NO failures. ([@carlost][])
|
20
26
|
|
21
|
-
## 0.4.2 - November 19, 2011
|
27
|
+
## 0.4.2 - November 19, 2011
|
22
28
|
|
23
29
|
### Bug fix:
|
24
30
|
|
25
|
-
- [#19]
|
31
|
+
- [#19][]: Fixed "superclass mismatch for class Test (TypeError)" thanks to [@gertas][]. ([@rymai][])
|
26
32
|
|
27
|
-
## 0.4.1 - November 3, 2011
|
33
|
+
## 0.4.1 - November 3, 2011
|
28
34
|
|
29
35
|
### Bugs fixes:
|
30
36
|
|
31
|
-
- [#18]
|
32
|
-
- [#11]
|
37
|
+
- [#18][]: Fixed a conflict with test_benchmark that was preventing guard-test from running. ([@rymai][])
|
38
|
+
- [#11][]: Fixed a "No such file to load -- guard/notifier" when running guard without bundler. ([@rymai][])
|
33
39
|
|
34
|
-
## 0.4.0 - September 29, 2011
|
40
|
+
## 0.4.0 - September 29, 2011
|
35
41
|
|
36
42
|
### Regression:
|
37
43
|
|
38
|
-
- Removed support of [turn](https://github.com/guard/guard-spork) gem since "Turn is no longer compatible with TestUnit 2.0+. TestUnit and MiniTest are deverging and after some consideration it was decided that Turn's goal is to support Ruby's native test framework, whatever it may be." quoted from Turn's [release.txt](https://github.com/TwP/turn/blob/master/Release.txt).
|
44
|
+
- Removed support of [turn](https://github.com/guard/guard-spork) gem since "Turn is no longer compatible with TestUnit 2.0+. TestUnit and MiniTest are deverging and after some consideration it was decided that Turn's goal is to support Ruby's native test framework, whatever it may be." quoted from Turn's [release.txt](https://github.com/TwP/turn/blob/master/Release.txt). ([@rymai][])
|
39
45
|
|
40
46
|
### New feature:
|
41
47
|
|
42
|
-
- New `:drb` option enabling the use of [`spork-testunit`](https://github.com/timcharper/spork-testunit) gem (be sure to use [guard-spork](https://github.com/guard/guard-spork) as well).
|
48
|
+
- New `:drb` option enabling the use of [`spork-testunit`](https://github.com/timcharper/spork-testunit) gem (be sure to use [guard-spork](https://github.com/guard/guard-spork) as well). ([@rymai][])
|
43
49
|
|
44
50
|
## 0.3.1 - September 11, 2011
|
45
51
|
|
46
52
|
### New feature:
|
47
53
|
|
48
|
-
- [#13]
|
54
|
+
- [#13][]: New `test_paths` option to look for test files under other paths than `test`. ([@Ask11][])
|
49
55
|
|
50
56
|
### Improvement:
|
51
57
|
|
52
|
-
- [#15]
|
58
|
+
- [#15][]: Simplify some checks. ([@dasch][])
|
53
59
|
|
54
60
|
## 0.3.0 - June 14, 2011
|
55
61
|
|
@@ -73,53 +79,65 @@
|
|
73
79
|
|
74
80
|
- Consider 'test_*.rb' as test files as well. ([@uk-ar][])
|
75
81
|
|
76
|
-
## 0.3.0.rc4 - June 3, 2011
|
82
|
+
## 0.3.0.rc4 - June 3, 2011
|
77
83
|
|
78
84
|
### Bugs fix:
|
79
85
|
|
80
|
-
- Add a require that was making the guard be fired by Guard! :'(
|
86
|
+
- Add a require that was making the guard be fired by Guard! :'( ([@rymai][])
|
81
87
|
|
82
|
-
## 0.3.0.rc3 - June 3, 2011
|
88
|
+
## 0.3.0.rc3 - June 3, 2011
|
83
89
|
|
84
90
|
### Bugs fix:
|
85
91
|
|
86
|
-
- Actually make the tests run.
|
92
|
+
- Actually make the tests run. ([@rymai][])
|
87
93
|
|
88
94
|
### Regression:
|
89
95
|
|
90
|
-
- Turn doesn't want to run, so remove sentences that say that it is supported for now. Note: The code is still here, only the command line doesn't seem to output anything...
|
96
|
+
- Turn doesn't want to run, so remove sentences that say that it is supported for now. Note: The code is still here, only the command line doesn't seem to output anything... ([@rymai][])
|
91
97
|
|
92
|
-
## 0.3.0.rc2 - June 2, 2011
|
98
|
+
## 0.3.0.rc2 - June 2, 2011
|
93
99
|
|
94
100
|
### New features:
|
95
101
|
|
96
|
-
- New `:cli` option (nil by default) to pass arbitrary CLI arguments to the Ruby/Turn command that runs the tests.
|
97
|
-
- New `:notification` option (true by default) to disable notification (Growl/Inotify).
|
98
|
-
- New `:all_on_start` option (true by default) to not run all the tests at startup.
|
99
|
-
- New `:all_after_pass` option (true by default) to run all tests after changed tests pass.
|
100
|
-
- New `:keep_failed` option (true by default) to keep failed tests until them pass.
|
102
|
+
- New `:cli` option (nil by default) to pass arbitrary CLI arguments to the Ruby/Turn command that runs the tests. ([@rymai][])
|
103
|
+
- New `:notification` option (true by default) to disable notification (Growl/Inotify). ([@rymai][])
|
104
|
+
- New `:all_on_start` option (true by default) to not run all the tests at startup. ([@rymai][])
|
105
|
+
- New `:all_after_pass` option (true by default) to run all tests after changed tests pass. ([@rymai][])
|
106
|
+
- New `:keep_failed` option (true by default) to keep failed tests until them pass. ([@rymai][])
|
101
107
|
|
102
108
|
### Improvements:
|
103
109
|
|
104
|
-
- Added compatibility with 1.8.6, 1.8.7, 1.9.2, REE, Rubinius and JRuby.
|
105
|
-
- Internal changes inspired by [guard-minitest](https://github.com/guard/guard-minitest).
|
110
|
+
- Added compatibility with 1.8.6, 1.8.7, 1.9.2, REE, Rubinius and JRuby. ([@rymai][])
|
111
|
+
- Internal changes inspired by [guard-minitest](https://github.com/guard/guard-minitest). ([@rymai][])
|
106
112
|
|
107
113
|
## 0.1.6 - January 24, 2011
|
108
114
|
|
109
115
|
### Bugs fix:
|
110
116
|
|
111
|
-
- [#2]
|
117
|
+
- [#2][]: Fixed a bug introduced in 0.1.5 where test/ was not added to the $LOAD_PATH. ([@rymai][])
|
112
118
|
|
113
|
-
## 0.1.5 - January 21, 2011
|
119
|
+
## 0.1.5 - January 21, 2011
|
114
120
|
|
115
|
-
- Updated gem dependencies
|
121
|
+
- Updated gem dependencies. ([@rymai][])
|
116
122
|
|
117
123
|
## 0.1.4 - December 15, 2010
|
118
124
|
|
119
125
|
### Bugs fix:
|
120
126
|
|
121
|
-
- [#1]
|
122
|
-
|
127
|
+
- [#1][]: Include errors count to determine the "flag" to display in notification. ([@gregorymostizky][])
|
128
|
+
|
129
|
+
<!--- The following link definition list is generated by PimpMyChangelog --->
|
130
|
+
[#1]: https://github.com/guard/guard/issues/1
|
131
|
+
[#2]: https://github.com/guard/guard/issues/2
|
132
|
+
[#11]: https://github.com/guard/guard/issues/11
|
133
|
+
[#13]: https://github.com/guard/guard/issues/13
|
134
|
+
[#15]: https://github.com/guard/guard/issues/15
|
135
|
+
[#18]: https://github.com/guard/guard/issues/18
|
136
|
+
[#19]: https://github.com/guard/guard/issues/19
|
137
|
+
[#20]: https://github.com/guard/guard/issues/20
|
138
|
+
[#21]: https://github.com/guard/guard/issues/21
|
139
|
+
[#24]: https://github.com/guard/guard/issues/24
|
140
|
+
[#34]: https://github.com/guard/guard/issues/34
|
123
141
|
[@Ask11]: https://github.com/Ask11
|
124
142
|
[@carlost]: https://github.com/carlost
|
125
143
|
[@coderjoe]: https://github.com/coderjoe
|
@@ -127,5 +145,6 @@
|
|
127
145
|
[@gertas]: https://github.com/gertas
|
128
146
|
[@gregorymostizky]: https://github.com/gregorymostizky
|
129
147
|
[@jgrau]: https://github.com/jgrau
|
148
|
+
[@pastorius]: https://github.com/pastorius
|
130
149
|
[@rymai]: https://github.com/rymai
|
131
150
|
[@uk-ar]: https://github.com/uk-ar
|
data/lib/guard/test/inspector.rb
CHANGED
data/lib/guard/test/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-11-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: guard
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 1.1
|
21
|
+
version: '1.1'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ! '>='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 1.1
|
29
|
+
version: '1.1'
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: test-unit
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
@@ -50,7 +50,7 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - ~>
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: '1.
|
53
|
+
version: '1.0'
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -58,7 +58,7 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - ~>
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '1.
|
61
|
+
version: '1.0'
|
62
62
|
- !ruby/object:Gem::Dependency
|
63
63
|
name: rspec
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
requirements:
|
67
67
|
- - ~>
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '2.
|
69
|
+
version: '2.11'
|
70
70
|
type: :development
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -74,7 +74,7 @@ dependencies:
|
|
74
74
|
requirements:
|
75
75
|
- - ~>
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version: '2.
|
77
|
+
version: '2.11'
|
78
78
|
description: Guard::Test automatically run your tests on file modification.
|
79
79
|
email:
|
80
80
|
- remy@rymai.me
|
@@ -98,7 +98,7 @@ files:
|
|
98
98
|
- CHANGELOG.md
|
99
99
|
- LICENSE
|
100
100
|
- README.md
|
101
|
-
homepage:
|
101
|
+
homepage: http://rubygems.org/gems/guard-test
|
102
102
|
licenses: []
|
103
103
|
post_install_message:
|
104
104
|
rdoc_options: []
|
@@ -112,7 +112,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
112
112
|
version: '0'
|
113
113
|
segments:
|
114
114
|
- 0
|
115
|
-
hash:
|
115
|
+
hash: 819500394111635453
|
116
116
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
117
117
|
none: false
|
118
118
|
requirements:
|