stella 0.3.2 → 0.5.1

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.
Files changed (100) hide show
  1. data/README.txt +24 -84
  2. data/Rakefile +1 -6
  3. data/doc/classes/Crypto.html +248 -0
  4. data/doc/classes/Crypto/Key.html +308 -0
  5. data/doc/classes/Enumerable.html +309 -0
  6. data/doc/classes/FileUtil.html +310 -0
  7. data/doc/classes/HTTPUtil.html +530 -0
  8. data/doc/classes/MathUtil.html +210 -0
  9. data/doc/classes/Stella.html +238 -0
  10. data/doc/classes/Stella/Adapter.html +127 -0
  11. data/doc/classes/Stella/Adapter/ApacheBench.html +1076 -0
  12. data/doc/classes/Stella/Adapter/Base.html +432 -0
  13. data/doc/classes/Stella/Adapter/CommandNotReady.html +146 -0
  14. data/doc/classes/Stella/Adapter/Httperf.html +949 -0
  15. data/doc/classes/Stella/Adapter/Siege.html +1011 -0
  16. data/doc/classes/Stella/CLI.html +914 -0
  17. data/doc/classes/Stella/CLI/Base.html +186 -0
  18. data/doc/classes/Stella/CLI/Language.html +149 -0
  19. data/doc/classes/Stella/CLI/LocalTest.html +268 -0
  20. data/doc/classes/Stella/Command.html +111 -0
  21. data/doc/classes/Stella/Command/Base.html +335 -0
  22. data/doc/classes/Stella/Config.html +292 -0
  23. data/doc/classes/Stella/InvalidArgument.html +242 -0
  24. data/doc/classes/Stella/LocalTest.html +450 -0
  25. data/doc/classes/Stella/Logger.html +548 -0
  26. data/doc/classes/Stella/Response.html +846 -0
  27. data/doc/classes/Stella/Storable.html +928 -0
  28. data/doc/classes/Stella/Test.html +142 -0
  29. data/doc/classes/Stella/Test/DaySummary.html +249 -0
  30. data/doc/classes/Stella/Test/Definition.html +294 -0
  31. data/doc/classes/Stella/Test/Definition/Rampup.html +215 -0
  32. data/doc/classes/Stella/Test/RunSummary.html +315 -0
  33. data/doc/classes/Stella/Test/SummaryBase.html +286 -0
  34. data/doc/classes/Stella/Test/TestSummary.html +200 -0
  35. data/doc/classes/Stella/Text.html +581 -0
  36. data/doc/classes/Stella/Text/Resource.html +289 -0
  37. data/doc/classes/Stella/UnavailableAdapter.html +242 -0
  38. data/doc/classes/Stella/UnknownValue.html +242 -0
  39. data/doc/classes/Stella/UnsupportedLanguage.html +115 -0
  40. data/doc/classes/Stella/Util.html +348 -0
  41. data/doc/classes/TextGraph.html +460 -0
  42. data/doc/classes/TimerUtil.html +431 -0
  43. data/doc/created.rid +1 -0
  44. data/doc/files/LICENSE_txt.html +129 -0
  45. data/doc/files/README_txt.html +209 -0
  46. data/doc/files/lib/stella/adapter/ab_rb.html +101 -0
  47. data/doc/files/lib/stella/adapter/base_rb.html +101 -0
  48. data/doc/files/lib/stella/adapter/httperf_rb.html +101 -0
  49. data/doc/files/lib/stella/adapter/siege_rb.html +101 -0
  50. data/doc/files/lib/stella/cli/base_rb.html +101 -0
  51. data/doc/files/lib/stella/cli/language_rb.html +101 -0
  52. data/doc/files/lib/stella/cli/localtest_rb.html +101 -0
  53. data/doc/files/lib/stella/cli_rb.html +112 -0
  54. data/doc/files/lib/stella/command/base_rb.html +101 -0
  55. data/doc/files/lib/stella/command/localtest_rb.html +101 -0
  56. data/doc/files/lib/stella/logger_rb.html +101 -0
  57. data/doc/files/lib/stella/response_rb.html +101 -0
  58. data/doc/files/lib/stella/storable_rb.html +109 -0
  59. data/doc/files/lib/stella/support_rb.html +101 -0
  60. data/doc/files/lib/stella/test/daysummary_rb.html +101 -0
  61. data/doc/files/lib/stella/test/definition_rb.html +101 -0
  62. data/doc/files/lib/stella/test/runsummary_rb.html +101 -0
  63. data/doc/files/lib/stella/test/summarybase_rb.html +101 -0
  64. data/doc/files/lib/stella/test/testsummary_rb.html +108 -0
  65. data/doc/files/lib/stella/text/resource_rb.html +108 -0
  66. data/doc/files/lib/stella/text_rb.html +108 -0
  67. data/doc/files/lib/stella_rb.html +128 -0
  68. data/doc/files/lib/utils/crypto-key_rb.html +116 -0
  69. data/doc/files/lib/utils/fileutil_rb.html +108 -0
  70. data/doc/files/lib/utils/httputil_rb.html +110 -0
  71. data/doc/files/lib/utils/mathutil_rb.html +101 -0
  72. data/doc/files/lib/utils/textgraph_rb.html +138 -0
  73. data/doc/files/lib/utils/timerutil_rb.html +108 -0
  74. data/doc/fr_class_index.html +66 -0
  75. data/doc/fr_file_index.html +62 -0
  76. data/doc/fr_method_index.html +309 -0
  77. data/doc/index.html +24 -0
  78. data/doc/rdoc-style.css +208 -0
  79. data/lib/stella.rb +5 -6
  80. data/lib/stella/adapter/ab.rb +4 -31
  81. data/lib/stella/adapter/base.rb +1 -15
  82. data/lib/stella/adapter/httperf.rb +4 -35
  83. data/lib/stella/adapter/siege.rb +29 -51
  84. data/lib/stella/cli.rb +22 -45
  85. data/lib/stella/cli/language.rb +0 -2
  86. data/lib/stella/cli/localtest.rb +0 -5
  87. data/lib/stella/command/base.rb +1 -1
  88. data/lib/stella/command/localtest.rb +68 -84
  89. data/lib/stella/test/daysummary.rb +93 -0
  90. data/lib/stella/test/definition.rb +5 -10
  91. data/lib/stella/test/{run/summary.rb → runsummary.rb} +6 -4
  92. data/lib/stella/test/{base.rb → summarybase.rb} +7 -3
  93. data/lib/stella/test/{summary.rb → testsummary.rb} +29 -27
  94. data/lib/utils/mathutil.rb +34 -36
  95. data/spec/base.rb +26 -0
  96. data/spec/shell_spec.rb +12 -0
  97. data/support/text/en.yaml +1 -7
  98. metadata +102 -8
  99. data/lib/stella/cli/agents.rb +0 -73
  100. data/lib/utils/escape.rb +0 -302
@@ -0,0 +1,431 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
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>Class: TimerUtil</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
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="classHeader">
50
+ <table class="header-table">
51
+ <tr class="top-aligned-row">
52
+ <td><strong>Class</strong></td>
53
+ <td class="class-name-in-header">TimerUtil</td>
54
+ </tr>
55
+ <tr class="top-aligned-row">
56
+ <td><strong>In:</strong></td>
57
+ <td>
58
+ <a href="../files/lib/utils/timerutil_rb.html">
59
+ lib/utils/timerutil.rb
60
+ </a>
61
+ <br />
62
+ </td>
63
+ </tr>
64
+
65
+ <tr class="top-aligned-row">
66
+ <td><strong>Parent:</strong></td>
67
+ <td>
68
+ Object
69
+ </td>
70
+ </tr>
71
+ </table>
72
+ </div>
73
+ <!-- banner header -->
74
+
75
+ <div id="bodyContent">
76
+
77
+
78
+
79
+ <div id="contextContent">
80
+
81
+
82
+
83
+ </div>
84
+
85
+ <div id="method-list">
86
+ <h3 class="section-bar">Methods</h3>
87
+
88
+ <div class="name-list">
89
+ <a href="#M000017">cstime</a>&nbsp;&nbsp;
90
+ <a href="#M000016">cutime</a>&nbsp;&nbsp;
91
+ <a href="#M000020">format</a>&nbsp;&nbsp;
92
+ <a href="#M000021">label</a>&nbsp;&nbsp;
93
+ <a href="#M000011">new</a>&nbsp;&nbsp;
94
+ <a href="#M000019">real</a>&nbsp;&nbsp;
95
+ <a href="#M000012">start</a>&nbsp;&nbsp;
96
+ <a href="#M000015">stime</a>&nbsp;&nbsp;
97
+ <a href="#M000013">stop</a>&nbsp;&nbsp;
98
+ <a href="#M000018">total</a>&nbsp;&nbsp;
99
+ <a href="#M000014">utime</a>&nbsp;&nbsp;
100
+ </div>
101
+ </div>
102
+
103
+ </div>
104
+
105
+
106
+ <!-- if includes -->
107
+
108
+ <div id="section">
109
+
110
+
111
+
112
+
113
+
114
+ <div id="attribute-list">
115
+ <h3 class="section-bar">Attributes</h3>
116
+
117
+ <div class="name-list">
118
+ <table>
119
+ <tr class="top-aligned-row context-row">
120
+ <td class="context-item-name">rend</td>
121
+ <td class="context-item-value">&nbsp;[R]&nbsp;</td>
122
+ <td class="context-item-desc"></td>
123
+ </tr>
124
+ <tr class="top-aligned-row context-row">
125
+ <td class="context-item-name">rstart</td>
126
+ <td class="context-item-value">&nbsp;[R]&nbsp;</td>
127
+ <td class="context-item-desc"></td>
128
+ </tr>
129
+ <tr class="top-aligned-row context-row">
130
+ <td class="context-item-name">tend</td>
131
+ <td class="context-item-value">&nbsp;[R]&nbsp;</td>
132
+ <td class="context-item-desc"></td>
133
+ </tr>
134
+ <tr class="top-aligned-row context-row">
135
+ <td class="context-item-name">time</td>
136
+ <td class="context-item-value">&nbsp;[R]&nbsp;</td>
137
+ <td class="context-item-desc"></td>
138
+ </tr>
139
+ <tr class="top-aligned-row context-row">
140
+ <td class="context-item-name">tstart</td>
141
+ <td class="context-item-value">&nbsp;[R]&nbsp;</td>
142
+ <td class="context-item-desc"></td>
143
+ </tr>
144
+ </table>
145
+ </div>
146
+ </div>
147
+
148
+
149
+
150
+ <!-- if method_list -->
151
+ <div id="methods">
152
+ <h3 class="section-bar">Public Class methods</h3>
153
+
154
+ <div id="method-M000011" class="method-detail">
155
+ <a name="M000011"></a>
156
+
157
+ <div class="method-heading">
158
+ <a href="#M000011" class="method-signature">
159
+ <span class="method-name">new</span><span class="method-args">(label=&quot;default&quot;)</span>
160
+ </a>
161
+ </div>
162
+
163
+ <div class="method-description">
164
+ <p><a class="source-toggle" href="#"
165
+ onclick="toggleCode('M000011-source');return false;">[Source]</a></p>
166
+ <div class="method-source-code" id="M000011-source">
167
+ <pre>
168
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 9</span>
169
+ 9: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">label</span>=<span class="ruby-value str">&quot;default&quot;</span>)
170
+ 10: <span class="ruby-ivar">@tstart</span>, <span class="ruby-ivar">@rstart</span> = <span class="ruby-value">0</span>,<span class="ruby-value">0</span>
171
+ 11: <span class="ruby-ivar">@tend</span>, <span class="ruby-ivar">@rend</span> = <span class="ruby-value">0</span>,<span class="ruby-value">0</span>
172
+ 12: <span class="ruby-ivar">@label</span> = <span class="ruby-identifier">label</span>
173
+ 13: <span class="ruby-ivar">@time</span> = <span class="ruby-constant">Benchmark</span><span class="ruby-operator">::</span><span class="ruby-constant">Tms</span>.<span class="ruby-identifier">new</span>
174
+ 14: <span class="ruby-keyword kw">end</span>
175
+ </pre>
176
+ </div>
177
+ </div>
178
+ </div>
179
+
180
+ <h3 class="section-bar">Public Instance methods</h3>
181
+
182
+ <div id="method-M000017" class="method-detail">
183
+ <a name="M000017"></a>
184
+
185
+ <div class="method-heading">
186
+ <a href="#M000017" class="method-signature">
187
+ <span class="method-name">cstime</span><span class="method-args">()</span>
188
+ </a>
189
+ </div>
190
+
191
+ <div class="method-description">
192
+ <p><a class="source-toggle" href="#"
193
+ onclick="toggleCode('M000017-source');return false;">[Source]</a></p>
194
+ <div class="method-source-code" id="M000017-source">
195
+ <pre>
196
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 40</span>
197
+ 40: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">cstime</span>
198
+ 41: <span class="ruby-ivar">@time</span>.<span class="ruby-identifier">cstime</span>
199
+ 42: <span class="ruby-keyword kw">end</span>
200
+ </pre>
201
+ </div>
202
+ </div>
203
+ </div>
204
+
205
+ <div id="method-M000016" class="method-detail">
206
+ <a name="M000016"></a>
207
+
208
+ <div class="method-heading">
209
+ <a href="#M000016" class="method-signature">
210
+ <span class="method-name">cutime</span><span class="method-args">()</span>
211
+ </a>
212
+ </div>
213
+
214
+ <div class="method-description">
215
+ <p><a class="source-toggle" href="#"
216
+ onclick="toggleCode('M000016-source');return false;">[Source]</a></p>
217
+ <div class="method-source-code" id="M000016-source">
218
+ <pre>
219
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 37</span>
220
+ 37: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">cutime</span>
221
+ 38: <span class="ruby-ivar">@time</span>.<span class="ruby-identifier">cutime</span>
222
+ 39: <span class="ruby-keyword kw">end</span>
223
+ </pre>
224
+ </div>
225
+ </div>
226
+ </div>
227
+
228
+ <div id="method-M000020" class="method-detail">
229
+ <a name="M000020"></a>
230
+
231
+ <div class="method-heading">
232
+ <a href="#M000020" class="method-signature">
233
+ <span class="method-name">format</span><span class="method-args">(formatstr=nil)</span>
234
+ </a>
235
+ </div>
236
+
237
+ <div class="method-description">
238
+ <p><a class="source-toggle" href="#"
239
+ onclick="toggleCode('M000020-source');return false;">[Source]</a></p>
240
+ <div class="method-source-code" id="M000020-source">
241
+ <pre>
242
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 49</span>
243
+ 49: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">format</span>(<span class="ruby-identifier">formatstr</span>=<span class="ruby-keyword kw">nil</span>)
244
+ 50: <span class="ruby-ivar">@time</span>.<span class="ruby-identifier">format</span>(<span class="ruby-identifier">formatstr</span>)
245
+ 51: <span class="ruby-keyword kw">end</span>
246
+ </pre>
247
+ </div>
248
+ </div>
249
+ </div>
250
+
251
+ <div id="method-M000021" class="method-detail">
252
+ <a name="M000021"></a>
253
+
254
+ <div class="method-heading">
255
+ <a href="#M000021" class="method-signature">
256
+ <span class="method-name">label</span><span class="method-args">()</span>
257
+ </a>
258
+ </div>
259
+
260
+ <div class="method-description">
261
+ <p><a class="source-toggle" href="#"
262
+ onclick="toggleCode('M000021-source');return false;">[Source]</a></p>
263
+ <div class="method-source-code" id="M000021-source">
264
+ <pre>
265
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 52</span>
266
+ 52: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">label</span>
267
+ 53: <span class="ruby-ivar">@time</span>.<span class="ruby-identifier">label</span>
268
+ 54: <span class="ruby-keyword kw">end</span>
269
+ </pre>
270
+ </div>
271
+ </div>
272
+ </div>
273
+
274
+ <div id="method-M000019" class="method-detail">
275
+ <a name="M000019"></a>
276
+
277
+ <div class="method-heading">
278
+ <a href="#M000019" class="method-signature">
279
+ <span class="method-name">real</span><span class="method-args">()</span>
280
+ </a>
281
+ </div>
282
+
283
+ <div class="method-description">
284
+ <p><a class="source-toggle" href="#"
285
+ onclick="toggleCode('M000019-source');return false;">[Source]</a></p>
286
+ <div class="method-source-code" id="M000019-source">
287
+ <pre>
288
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 46</span>
289
+ 46: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">real</span>
290
+ 47: <span class="ruby-ivar">@time</span>.<span class="ruby-identifier">real</span>
291
+ 48: <span class="ruby-keyword kw">end</span>
292
+ </pre>
293
+ </div>
294
+ </div>
295
+ </div>
296
+
297
+ <div id="method-M000012" class="method-detail">
298
+ <a name="M000012"></a>
299
+
300
+ <div class="method-heading">
301
+ <a href="#M000012" class="method-signature">
302
+ <span class="method-name">start</span><span class="method-args">()</span>
303
+ </a>
304
+ </div>
305
+
306
+ <div class="method-description">
307
+ <p><a class="source-toggle" href="#"
308
+ onclick="toggleCode('M000012-source');return false;">[Source]</a></p>
309
+ <div class="method-source-code" id="M000012-source">
310
+ <pre>
311
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 16</span>
312
+ 16: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">start</span>
313
+ 17: <span class="ruby-ivar">@tstart</span>, <span class="ruby-ivar">@rstart</span> = <span class="ruby-constant">Benchmark</span>.<span class="ruby-identifier">times</span>, <span class="ruby-constant">Time</span>.<span class="ruby-identifier">now</span>
314
+ 18: <span class="ruby-keyword kw">end</span>
315
+ </pre>
316
+ </div>
317
+ </div>
318
+ </div>
319
+
320
+ <div id="method-M000015" class="method-detail">
321
+ <a name="M000015"></a>
322
+
323
+ <div class="method-heading">
324
+ <a href="#M000015" class="method-signature">
325
+ <span class="method-name">stime</span><span class="method-args">()</span>
326
+ </a>
327
+ </div>
328
+
329
+ <div class="method-description">
330
+ <p><a class="source-toggle" href="#"
331
+ onclick="toggleCode('M000015-source');return false;">[Source]</a></p>
332
+ <div class="method-source-code" id="M000015-source">
333
+ <pre>
334
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 34</span>
335
+ 34: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">stime</span>
336
+ 35: <span class="ruby-ivar">@time</span>.<span class="ruby-identifier">stime</span>
337
+ 36: <span class="ruby-keyword kw">end</span>
338
+ </pre>
339
+ </div>
340
+ </div>
341
+ </div>
342
+
343
+ <div id="method-M000013" class="method-detail">
344
+ <a name="M000013"></a>
345
+
346
+ <div class="method-heading">
347
+ <a href="#M000013" class="method-signature">
348
+ <span class="method-name">stop</span><span class="method-args">()</span>
349
+ </a>
350
+ </div>
351
+
352
+ <div class="method-description">
353
+ <p><a class="source-toggle" href="#"
354
+ onclick="toggleCode('M000013-source');return false;">[Source]</a></p>
355
+ <div class="method-source-code" id="M000013-source">
356
+ <pre>
357
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 20</span>
358
+ 20: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">stop</span>
359
+ 21: <span class="ruby-ivar">@tend</span>, <span class="ruby-ivar">@rend</span> = <span class="ruby-constant">Benchmark</span>.<span class="ruby-identifier">times</span>, <span class="ruby-constant">Time</span>.<span class="ruby-identifier">now</span>
360
+ 22:
361
+ 23: <span class="ruby-ivar">@time</span> = <span class="ruby-constant">Benchmark</span><span class="ruby-operator">::</span><span class="ruby-constant">Tms</span>.<span class="ruby-identifier">new</span>(<span class="ruby-ivar">@tend</span>.<span class="ruby-identifier">utime</span> <span class="ruby-operator">-</span> <span class="ruby-ivar">@tstart</span>.<span class="ruby-identifier">utime</span>,
362
+ 24: <span class="ruby-ivar">@tend</span>.<span class="ruby-identifier">stime</span> <span class="ruby-operator">-</span> <span class="ruby-ivar">@tstart</span>.<span class="ruby-identifier">stime</span>,
363
+ 25: <span class="ruby-ivar">@tend</span>.<span class="ruby-identifier">cutime</span> <span class="ruby-operator">-</span> <span class="ruby-ivar">@tstart</span>.<span class="ruby-identifier">cutime</span>,
364
+ 26: <span class="ruby-ivar">@tend</span>.<span class="ruby-identifier">cstime</span> <span class="ruby-operator">-</span> <span class="ruby-ivar">@tstart</span>.<span class="ruby-identifier">cstime</span>,
365
+ 27: <span class="ruby-ivar">@rend</span>.<span class="ruby-identifier">to_f</span> <span class="ruby-operator">-</span> <span class="ruby-ivar">@rstart</span>.<span class="ruby-identifier">to_f</span>,
366
+ 28: <span class="ruby-ivar">@label</span>)
367
+ 29: <span class="ruby-keyword kw">end</span>
368
+ </pre>
369
+ </div>
370
+ </div>
371
+ </div>
372
+
373
+ <div id="method-M000018" class="method-detail">
374
+ <a name="M000018"></a>
375
+
376
+ <div class="method-heading">
377
+ <a href="#M000018" class="method-signature">
378
+ <span class="method-name">total</span><span class="method-args">()</span>
379
+ </a>
380
+ </div>
381
+
382
+ <div class="method-description">
383
+ <p><a class="source-toggle" href="#"
384
+ onclick="toggleCode('M000018-source');return false;">[Source]</a></p>
385
+ <div class="method-source-code" id="M000018-source">
386
+ <pre>
387
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 43</span>
388
+ 43: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">total</span>
389
+ 44: <span class="ruby-ivar">@time</span>.<span class="ruby-identifier">total</span>
390
+ 45: <span class="ruby-keyword kw">end</span>
391
+ </pre>
392
+ </div>
393
+ </div>
394
+ </div>
395
+
396
+ <div id="method-M000014" class="method-detail">
397
+ <a name="M000014"></a>
398
+
399
+ <div class="method-heading">
400
+ <a href="#M000014" class="method-signature">
401
+ <span class="method-name">utime</span><span class="method-args">()</span>
402
+ </a>
403
+ </div>
404
+
405
+ <div class="method-description">
406
+ <p><a class="source-toggle" href="#"
407
+ onclick="toggleCode('M000014-source');return false;">[Source]</a></p>
408
+ <div class="method-source-code" id="M000014-source">
409
+ <pre>
410
+ <span class="ruby-comment cmt"># File lib/utils/timerutil.rb, line 31</span>
411
+ 31: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">utime</span>
412
+ 32: <span class="ruby-ivar">@time</span>.<span class="ruby-identifier">utime</span>
413
+ 33: <span class="ruby-keyword kw">end</span>
414
+ </pre>
415
+ </div>
416
+ </div>
417
+ </div>
418
+
419
+
420
+ </div>
421
+
422
+
423
+ </div>
424
+
425
+
426
+ <div id="validator-badges">
427
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
428
+ </div>
429
+
430
+ </body>
431
+ </html>
@@ -0,0 +1 @@
1
+ Mon, 22 Dec 2008 18:24:20 -0500
@@ -0,0 +1,129 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
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: LICENSE.txt</title>
9
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
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>LICENSE.txt</h1>
51
+ <table class="header-table">
52
+ <tr class="top-aligned-row">
53
+ <td><strong>Path:</strong></td>
54
+ <td>LICENSE.txt
55
+ </td>
56
+ </tr>
57
+ <tr class="top-aligned-row">
58
+ <td><strong>Last Update:</strong></td>
59
+ <td>Thu Dec 04 09:54:37 -0500 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
+ Copyright (c) 2008 Solutious Inc
74
+ </p>
75
+ <p>
76
+ Permission is hereby granted, free of charge, to any person obtaining a
77
+ copy of this software and associated documentation files (the
78
+ &quot;Software&quot;), to deal in the Software without restriction,
79
+ including without limitation the rights to use, copy, modify, merge,
80
+ publish, distribute, sublicense, and/or sell copies of the Software, and to
81
+ permit persons to whom the Software is furnished to do so, subject to the
82
+ following conditions:
83
+ </p>
84
+ <p>
85
+ The above copyright notice and this permission notice shall be included in
86
+ all copies or substantial portions of the Software.
87
+ </p>
88
+ <p>
89
+ THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND,
90
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
91
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
92
+ NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
93
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
94
+ OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
95
+ USE OR OTHER DEALINGS IN THE SOFTWARE.
96
+ </p>
97
+
98
+ </div>
99
+
100
+
101
+ </div>
102
+
103
+
104
+ </div>
105
+
106
+
107
+ <!-- if includes -->
108
+
109
+ <div id="section">
110
+
111
+
112
+
113
+
114
+
115
+
116
+
117
+
118
+ <!-- if method_list -->
119
+
120
+
121
+ </div>
122
+
123
+
124
+ <div id="validator-badges">
125
+ <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
126
+ </div>
127
+
128
+ </body>
129
+ </html>