autocode 0.9.2 → 0.9.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 +1 @@
1
- Sat, 05 Jan 2008 21:05:10 -0800
1
+ Sat, 26 Jan 2008 15:52:15 -0800
@@ -0,0 +1,130 @@
1
+ <?xml version="1.0" encoding="iso-8859-1"?>
2
+ <!DOCTYPE html
3
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
4
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
5
+
6
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
7
+ <head>
8
+ <title>File: HISTORY</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
10
+ <meta http-equiv="Content-Script-Type" content="text/javascript" />
11
+ <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
12
+ <script type="text/javascript">
13
+ // <![CDATA[
14
+
15
+ function popupCode( url ) {
16
+ window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
17
+ }
18
+
19
+ function toggleCode( id ) {
20
+ if ( document.getElementById )
21
+ elem = document.getElementById( id );
22
+ else if ( document.all )
23
+ elem = eval( "document.all." + id );
24
+ else
25
+ return false;
26
+
27
+ elemStyle = elem.style;
28
+
29
+ if ( elemStyle.display != "block" ) {
30
+ elemStyle.display = "block"
31
+ } else {
32
+ elemStyle.display = "none"
33
+ }
34
+
35
+ return true;
36
+ }
37
+
38
+ // Make codeblocks hidden by default
39
+ document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
40
+
41
+ // ]]>
42
+ </script>
43
+
44
+ </head>
45
+ <body>
46
+
47
+
48
+
49
+ <div id="fileHeader">
50
+ <h1>HISTORY</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>HISTORY
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Sat Jan 26 14:50:31 -0800 2008</td>
60
+ </tr>
61
+ </table>
62
+ </div>
63
+ <!-- banner header -->
64
+
65
+ <div id="bodyContent">
66
+
67
+
68
+
69
+ <div id="contextContent">
70
+
71
+ <div id="description">
72
+ <p>
73
+ 0.9.2:
74
+ </p>
75
+ <ul>
76
+ <li>Fixed autoload to look for a file in all lowercase (foobar.rb instead of
77
+ Foobar.rb).
78
+
79
+ </li>
80
+ </ul>
81
+ <p>
82
+ 0.9.1:
83
+ </p>
84
+ <ul>
85
+ <li>Moved initialization of object after calling const_set so that self.name
86
+ has a value.
87
+
88
+ </li>
89
+ </ul>
90
+ <p>
91
+ 0.9.0:
92
+ </p>
93
+ <ul>
94
+ <li>Initial release as gem.
95
+
96
+ </li>
97
+ </ul>
98
+
99
+ </div>
100
+
101
+
102
+ </div>
103
+
104
+
105
+ </div>
106
+
107
+
108
+ <!-- if includes -->
109
+
110
+ <div id="section">
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+
119
+ <!-- if method_list -->
120
+
121
+
122
+ </div>
123
+
124
+
125
+ <div id="validator-badges">
126
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
127
+ </div>
128
+
129
+ </body>
130
+ </html>
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Fri Jan 04 21:10:04 -0800 2008</td>
59
+ <td>Tue Jan 08 17:42:55 -0800 2008</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -56,7 +56,7 @@
56
56
  </tr>
57
57
  <tr class="top-aligned-row">
58
58
  <td><strong>Last Update:</strong></td>
59
- <td>Fri Jan 04 21:37:28 -0800 2008</td>
59
+ <td>Wed Jan 23 09:59:20 -0800 2008</td>
60
60
  </tr>
61
61
  </table>
62
62
  </div>
@@ -20,6 +20,7 @@
20
20
  <div id="index">
21
21
  <h1 class="section-bar">Files</h1>
22
22
  <div id="index-entries">
23
+ <a href="files/HISTORY.html">HISTORY</a><br />
23
24
  <a href="files/README.html">README</a><br />
24
25
  <a href="files/lib/autocode_rb.html">lib/autocode.rb</a><br />
25
26
  <a href="files/lib/autocreate_rb.html">lib/autocreate.rb</a><br />
@@ -19,6 +19,6 @@
19
19
  <frame src="fr_class_index.html" name="Classes" />
20
20
  <frame src="fr_method_index.html" name="Methods" />
21
21
  </frameset>
22
- <frame src="files/README.html" name="docwin" />
22
+ <frame src="files/lib/autocode_rb.html" name="docwin" />
23
23
  </frameset>
24
24
  </html>
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: autocode
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.9.2
6
+ version: 0.9.3
7
7
  date: 2008-01-26 00:00:00 -08:00
8
8
  summary: Utility for auto-including, reloading, and generating classes and modules.
9
9
  require_paths:
@@ -45,6 +45,7 @@ files:
45
45
  - doc/rdoc/classes/Reloadable.src/M000006.html
46
46
  - doc/rdoc/created.rid
47
47
  - doc/rdoc/files
48
+ - doc/rdoc/files/HISTORY.html
48
49
  - doc/rdoc/files/lib
49
50
  - doc/rdoc/files/lib/autocode_rb.html
50
51
  - doc/rdoc/files/lib/autocreate_rb.html