ZenTest 4.3.2 → 4.3.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.
@@ -1,3 +1,10 @@
1
+ === 4.3.3 / 2010-06-17
2
+
3
+ * 2 minor enhancements:
4
+
5
+ * Added options and removed pattern from Autotest::RCov
6
+ * update_rubygems now deletes cached rubygems installs
7
+
1
8
  === 4.3.2 / 2010-06-02
2
9
 
3
10
  * 1 minor enhancement:
@@ -1,16 +1,21 @@
1
1
  module Autotest::RCov
2
- @@command, @@pattern = "rcov", "test/*.rb"
2
+ @@command, @@options = "rcov", nil
3
3
 
4
4
  def self.command= o
5
5
  @@command = o
6
6
  end
7
7
 
8
8
  def self.pattern= o
9
- @@pattern = o
9
+ warn "RCov.pattern= no longer has any functionality. please remove."
10
+ end
11
+
12
+ def self.options= o
13
+ @@options = o
10
14
  end
11
15
 
12
16
  Autotest.add_hook :all_good do |at|
13
- system "rake #{@@command} PATTERN=#{@@pattern}"
17
+ options = @@options ? "RCOVOPTS=\"#{@@options}\"" : ""
18
+ system "rake #{@@command} #{options}"
14
19
  false
15
20
  end
16
21
 
@@ -20,4 +25,3 @@ module Autotest::RCov
20
25
  false
21
26
  end
22
27
  end
23
-
@@ -408,6 +408,10 @@ module Multiruby
408
408
  end
409
409
  end
410
410
 
411
+ Multiruby.in_build_dir do
412
+ FileUtils.rm_rf Dir["rubygems*"]
413
+ end
414
+
411
415
  Multiruby.in_install_dir do
412
416
  FileUtils.rm_rf Dir["*"]
413
417
  end
@@ -53,7 +53,7 @@ end
53
53
 
54
54
  class ZenTest
55
55
 
56
- VERSION = '4.3.2'
56
+ VERSION = '4.3.3'
57
57
 
58
58
  include ZenTestMapping
59
59
 
metadata CHANGED
@@ -1,54 +1,30 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ZenTest
3
3
  version: !ruby/object:Gem::Version
4
- hash: 55
5
4
  prerelease: false
6
5
  segments:
7
6
  - 4
8
7
  - 3
9
- - 2
10
- version: 4.3.2
8
+ - 3
9
+ version: 4.3.3
11
10
  platform: ruby
12
11
  authors:
13
12
  - Ryan Davis
14
13
  - Eric Hodel
15
14
  autorequire:
16
15
  bindir: bin
17
- cert_chain:
18
- - |
19
- -----BEGIN CERTIFICATE-----
20
- MIIDPjCCAiagAwIBAgIBADANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
21
- ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
22
- GRYDY29tMB4XDTA5MDMwNjE4NTMxNVoXDTEwMDMwNjE4NTMxNVowRTETMBEGA1UE
23
- AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
24
- JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
25
- b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
26
- taCPaLmfYIaFcHHCSY4hYDJijRQkLxPeB3xbOfzfLoBDbjvx5JxgJxUjmGa7xhcT
27
- oOvjtt5P8+GSK9zLzxQP0gVLS/D0FmoE44XuDr3iQkVS2ujU5zZL84mMNqNB1znh
28
- GiadM9GHRaDiaxuX0cIUBj19T01mVE2iymf9I6bEsiayK/n6QujtyCbTWsAS9Rqt
29
- qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
30
- gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
31
- HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB
32
- AQAY59gYvDxqSqgC92nAP9P8dnGgfZgLxP237xS6XxFGJSghdz/nI6pusfCWKM8m
33
- vzjjH2wUMSSf3tNudQ3rCGLf2epkcU13/rguI88wO6MrE0wi4ZqLQX+eZQFskJb/
34
- w6x9W1ur8eR01s397LSMexySDBrJOh34cm2AlfKr/jokKCTwcM0OvVZnAutaovC0
35
- l1SVZ0ecg88bsWHA0Yhh7NFxK1utWoIhtB6AFC/+trM0FQEB/jZkIS8SaNzn96Rl
36
- n0sZEf77FLf5peR8TP/PtmIg7Cyqz23sLM4mCOoTGIy5OcZ8TdyiyINUHtb5ej/T
37
- FBHgymkyj/AOSqKRIpXPhjC6
38
- -----END CERTIFICATE-----
16
+ cert_chain: []
39
17
 
40
- date: 2010-06-03 00:00:00 -07:00
18
+ date: 2010-06-17 00:00:00 -07:00
41
19
  default_executable:
42
20
  dependencies:
43
21
  - !ruby/object:Gem::Dependency
44
22
  name: rubyforge
45
23
  prerelease: false
46
24
  requirement: &id001 !ruby/object:Gem::Requirement
47
- none: false
48
25
  requirements:
49
26
  - - ">="
50
27
  - !ruby/object:Gem::Version
51
- hash: 7
52
28
  segments:
53
29
  - 2
54
30
  - 0
@@ -60,11 +36,9 @@ dependencies:
60
36
  name: minitest
61
37
  prerelease: false
62
38
  requirement: &id002 !ruby/object:Gem::Requirement
63
- none: false
64
39
  requirements:
65
40
  - - ">="
66
41
  - !ruby/object:Gem::Version
67
- hash: 15
68
42
  segments:
69
43
  - 1
70
44
  - 6
@@ -76,11 +50,9 @@ dependencies:
76
50
  name: hoe
77
51
  prerelease: false
78
52
  requirement: &id003 !ruby/object:Gem::Requirement
79
- none: false
80
53
  requirements:
81
54
  - - ">="
82
55
  - !ruby/object:Gem::Version
83
- hash: 23
84
56
  segments:
85
57
  - 2
86
58
  - 6
@@ -172,27 +144,23 @@ rdoc_options:
172
144
  require_paths:
173
145
  - lib
174
146
  required_ruby_version: !ruby/object:Gem::Requirement
175
- none: false
176
147
  requirements:
177
148
  - - ">="
178
149
  - !ruby/object:Gem::Version
179
- hash: 3
180
150
  segments:
181
151
  - 0
182
152
  version: "0"
183
153
  required_rubygems_version: !ruby/object:Gem::Requirement
184
- none: false
185
154
  requirements:
186
155
  - - ">="
187
156
  - !ruby/object:Gem::Version
188
- hash: 3
189
157
  segments:
190
158
  - 0
191
159
  version: "0"
192
160
  requirements: []
193
161
 
194
162
  rubyforge_project: zentest
195
- rubygems_version: 1.3.7
163
+ rubygems_version: 1.3.6
196
164
  signing_key:
197
165
  specification_version: 3
198
166
  summary: "ZenTest provides 4 different tools: zentest, unit_diff, autotest, and multiruby"
data.tar.gz.sig DELETED
@@ -1 +0,0 @@
1
- U��1#�]sٞ6s�]Y�"�"���n!���s|��bV\��8~,ߵk㨊?
metadata.gz.sig DELETED
Binary file