heckle 1.0.0 → 1.1.0
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.
- data/History.txt +16 -0
- data/Manifest.txt +8 -1
- data/README.txt +4 -4
- data/Rakefile +5 -1
- data/bin/heckle +30 -8
- data/lib/heckle.rb +3 -86
- data/lib/heckle/base.rb +349 -0
- data/lib/heckle/reporter.rb +43 -0
- data/lib/test_unit_heckler.rb +45 -0
- data/sample/Rakefile +16 -0
- data/sample/changes.log +91 -0
- data/sample/lib/heckled.rb +63 -0
- data/sample/test/test_heckled.rb +19 -0
- data/test/fixtures/heckled.rb +103 -0
- data/test/test_heckle.rb +642 -17
- metadata +24 -8
metadata
CHANGED
@@ -3,16 +3,15 @@ rubygems_version: 0.9.0
|
|
3
3
|
specification_version: 1
|
4
4
|
name: heckle
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.
|
7
|
-
date: 2006-
|
6
|
+
version: 1.1.0
|
7
|
+
date: 2006-12-19 00:00:00 -08:00
|
8
8
|
summary: Unit Test Sadism
|
9
9
|
require_paths:
|
10
10
|
- lib
|
11
|
-
- test
|
12
11
|
email: ryand-ruby@zenspider.com
|
13
|
-
homepage: "
|
12
|
+
homepage: " http://www.rubyforge.org/projects/seattlerb"
|
14
13
|
rubyforge_project: seattlerb
|
15
|
-
description:
|
14
|
+
description: Unit Testing Sadism. More description coming soon. I'm punting to get this launched ASAP.
|
16
15
|
autorequire:
|
17
16
|
default_executable:
|
18
17
|
bindir: bin
|
@@ -36,9 +35,17 @@ files:
|
|
36
35
|
- Rakefile
|
37
36
|
- bin/heckle
|
38
37
|
- lib/heckle.rb
|
38
|
+
- lib/heckle/base.rb
|
39
|
+
- lib/heckle/reporter.rb
|
40
|
+
- lib/test_unit_heckler.rb
|
41
|
+
- sample/Rakefile
|
42
|
+
- sample/changes.log
|
43
|
+
- sample/lib/heckled.rb
|
44
|
+
- sample/test/test_heckled.rb
|
45
|
+
- test/fixtures/heckled.rb
|
46
|
+
- test/test_heckle.rb
|
47
|
+
test_files:
|
39
48
|
- test/test_heckle.rb
|
40
|
-
test_files: []
|
41
|
-
|
42
49
|
rdoc_options: []
|
43
50
|
|
44
51
|
extra_rdoc_files: []
|
@@ -57,5 +64,14 @@ dependencies:
|
|
57
64
|
requirements:
|
58
65
|
- - ">="
|
59
66
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.1.
|
67
|
+
version: 1.1.4
|
68
|
+
version:
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: ruby2ruby
|
71
|
+
version_requirement:
|
72
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 1.1.0
|
61
77
|
version:
|