ZenTest 4.9.0 → 4.9.1
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/History.txt +12 -5
- data/README.txt +1 -1
- data/lib/autotest.rb +3 -3
- data/lib/zentest.rb +1 -1
- metadata +14 -14
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/History.txt
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
=== 4.9.1 / 2013-04-18
|
2
|
+
|
3
|
+
* 2 minor enhancements:
|
4
|
+
|
5
|
+
* Make banner more explicit about correct test file location. (rue)
|
6
|
+
* Switched to #failed for calculating red/green hook. (bhenderson)
|
7
|
+
|
1
8
|
=== 4.9.0 / 2013-02-07
|
2
9
|
|
3
10
|
* 1 minor enhancement:
|
@@ -657,11 +664,11 @@
|
|
657
664
|
|
658
665
|
* 5 bug fixes:
|
659
666
|
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
667
|
+
* Extended zentest to deal with rails a bit better... ugh.
|
668
|
+
* Fixed @libs for windoze.
|
669
|
+
* Fixed inner class/test identification in autotest.
|
670
|
+
* Namespaced all plugins... eric is anal.
|
671
|
+
* No longer freak out if rubygems tarball not in multiruby/versions.
|
665
672
|
|
666
673
|
=== 3.3.0 / 2006-07-28
|
667
674
|
|
data/README.txt
CHANGED
data/lib/autotest.rb
CHANGED
@@ -92,8 +92,8 @@ class Autotest
|
|
92
92
|
opts.banner = <<-BANNER.gsub(/^ /, '')
|
93
93
|
Continuous testing for your ruby app.
|
94
94
|
|
95
|
-
Autotest automatically tests code that has changed. It
|
96
|
-
|
95
|
+
Autotest automatically tests code that has changed. It assumes
|
96
|
+
the code is in lib, and tests are in test/test_*.rb. Autotest
|
97
97
|
uses plugins to control what happens. You configure plugins
|
98
98
|
with require statements in the .autotest file in your
|
99
99
|
project base directory, and a default configuration for all
|
@@ -573,7 +573,7 @@ class Autotest
|
|
573
573
|
self.latest_results = Hash[*completed.flatten]
|
574
574
|
self.files_to_test = consolidate_failures failed
|
575
575
|
|
576
|
-
color =
|
576
|
+
color = failed.empty? ? :green : :red
|
577
577
|
hook color unless $TESTING
|
578
578
|
else
|
579
579
|
self.latest_results = nil
|
data/lib/zentest.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ZenTest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 4
|
8
8
|
- 9
|
9
|
-
-
|
10
|
-
version: 4.9.
|
9
|
+
- 1
|
10
|
+
version: 4.9.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Ryan Davis
|
@@ -37,7 +37,7 @@ cert_chain:
|
|
37
37
|
FBHgymkyj/AOSqKRIpXPhjC6
|
38
38
|
-----END CERTIFICATE-----
|
39
39
|
|
40
|
-
date: 2013-
|
40
|
+
date: 2013-04-18 00:00:00 Z
|
41
41
|
dependencies:
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: minitest
|
@@ -47,11 +47,11 @@ dependencies:
|
|
47
47
|
requirements:
|
48
48
|
- - ~>
|
49
49
|
- !ruby/object:Gem::Version
|
50
|
-
hash:
|
50
|
+
hash: 21
|
51
51
|
segments:
|
52
52
|
- 4
|
53
|
-
-
|
54
|
-
version: "4.
|
53
|
+
- 7
|
54
|
+
version: "4.7"
|
55
55
|
type: :development
|
56
56
|
version_requirements: *id001
|
57
57
|
- !ruby/object:Gem::Dependency
|
@@ -62,11 +62,11 @@ dependencies:
|
|
62
62
|
requirements:
|
63
63
|
- - ~>
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
hash:
|
65
|
+
hash: 27
|
66
66
|
segments:
|
67
|
-
-
|
68
|
-
-
|
69
|
-
version: "
|
67
|
+
- 4
|
68
|
+
- 0
|
69
|
+
version: "4.0"
|
70
70
|
type: :development
|
71
71
|
version_requirements: *id002
|
72
72
|
- !ruby/object:Gem::Dependency
|
@@ -77,11 +77,11 @@ dependencies:
|
|
77
77
|
requirements:
|
78
78
|
- - ~>
|
79
79
|
- !ruby/object:Gem::Version
|
80
|
-
hash:
|
80
|
+
hash: 11
|
81
81
|
segments:
|
82
82
|
- 3
|
83
|
-
-
|
84
|
-
version: "3.
|
83
|
+
- 6
|
84
|
+
version: "3.6"
|
85
85
|
type: :development
|
86
86
|
version_requirements: *id003
|
87
87
|
description: |-
|
metadata.gz.sig
CHANGED
Binary file
|