dev-utils 1.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.txt +27 -0
- data/HISTORY.txt +11 -3
- data/README.txt +18 -4
- data/Rakefile +4 -4
- data/VERSION +1 -1
- data/etc/doc/DebuggingAids.textile +9 -2
- data/etc/doc/generate.rb +1 -0
- data/etc/doc/index.textile +32 -4
- data/etc/doc/textile.css +6 -0
- data/setup.rb +1360 -0
- metadata +9 -5
- data/examples/debug.log +0 -0
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.1
|
|
3
3
|
specification_version: 1
|
4
4
|
name: dev-utils
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version:
|
7
|
-
date: 2004-10-
|
6
|
+
version: 1.0.1
|
7
|
+
date: 2004-10-13
|
8
8
|
summary: "Debugging utilities: breakpoints, debugging, and tracing."
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -26,11 +26,13 @@ required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
26
26
|
version:
|
27
27
|
platform: ruby
|
28
28
|
files:
|
29
|
+
- CHANGES.txt
|
29
30
|
- HISTORY.txt
|
30
31
|
- MIT-LICENSE.txt
|
31
32
|
- Rakefile
|
32
33
|
- README.txt
|
33
34
|
- VERSION
|
35
|
+
- setup.rb
|
34
36
|
- etc/doc
|
35
37
|
- etc/doc/DebuggingAids.textile
|
36
38
|
- etc/doc/generate.rb
|
@@ -38,9 +40,6 @@ files:
|
|
38
40
|
- etc/doc/links.dat
|
39
41
|
- etc/doc/textile.css
|
40
42
|
- etc/doc/UnitTestOrganisation.textile
|
41
|
-
- examples/breakpoint-example.rb
|
42
|
-
- examples/debug.log
|
43
|
-
- examples/log-trace-example.rb
|
44
43
|
- lib/dev-utils
|
45
44
|
- lib/dev-utils/debug
|
46
45
|
- lib/dev-utils/debug.rb
|
@@ -50,6 +49,8 @@ files:
|
|
50
49
|
- lib/dev-utils/debug/log.rb
|
51
50
|
- test/tc_debug.rb
|
52
51
|
- test/TEST.rb
|
52
|
+
- examples/breakpoint-example.rb
|
53
|
+
- examples/log-trace-example.rb
|
53
54
|
test_files: []
|
54
55
|
rdoc_options:
|
55
56
|
- "--main"
|
@@ -57,9 +58,12 @@ rdoc_options:
|
|
57
58
|
- "--title"
|
58
59
|
- dev-utils API Documentation
|
59
60
|
extra_rdoc_files:
|
61
|
+
- CHANGES.txt
|
60
62
|
- HISTORY.txt
|
61
63
|
- MIT-LICENSE.txt
|
64
|
+
- Rakefile
|
62
65
|
- README.txt
|
66
|
+
- VERSION
|
63
67
|
executables: []
|
64
68
|
extensions: []
|
65
69
|
requirements: []
|
data/examples/debug.log
DELETED
File without changes
|