rubybreaker 0.0.5 → 0.0.6
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/ABOUT.md +20 -0
- data/NEWS +5 -0
- data/README.md +16 -352
- data/Rakefile +30 -16
- data/TOPICS.md +55 -0
- data/TUTORIAL.md +291 -0
- data/VERSION +1 -1
- data/bin/rubybreaker +32 -14
- data/lib/rubybreaker/runtime/monitor.rb +1 -1
- data/lib/rubybreaker/runtime.rb +41 -21
- data/lib/rubybreaker/task.rb +15 -9
- data/lib/rubybreaker/test/rspec.rb +3 -3
- data/lib/rubybreaker/test/testcase.rb +3 -3
- data/lib/rubybreaker.rb +31 -16
- data/test/integrated/{tc_both_broken_breakable.rb → tc_both_documented_and_undocumented.rb} +3 -4
- data/test/integrated/tc_class_methods.rb +1 -1
- data/test/integrated/tc_inherit_broken.rb +1 -1
- data/test/integrated/tc_method_missing.rb +1 -1
- data/test/integrated/tc_namespace.rb +1 -1
- data/test/integrated/tc_simple1.rb +1 -1
- data/test/testtask/tc_testtask.rb +2 -2
- data/test/ts_integrated.rb +1 -1
- data/test/ts_rspec.rb +1 -1
- data/webpage/about.html +50 -0
- data/webpage/footer.html +6 -1
- data/webpage/header.html +9 -3
- data/webpage/images/logo.png +0 -0
- data/webpage/images/title.png +0 -0
- data/webpage/index.html +31 -367
- data/webpage/rdoc/Object.html +3 -103
- data/webpage/rdoc/Rake/RubyBreakerTestTask.html +80 -18
- data/webpage/rdoc/Rake.html +3 -7
- data/webpage/rdoc/RubyBreaker/Breakable.html +4 -8
- data/webpage/rdoc/RubyBreaker/Broken.html +4 -8
- data/webpage/rdoc/RubyBreaker/Context.html +3 -7
- data/webpage/rdoc/RubyBreaker/Errors/InternalError.html +3 -7
- data/webpage/rdoc/RubyBreaker/Errors/InvalidSubtypeCheck.html +3 -7
- data/webpage/rdoc/RubyBreaker/Errors/InvalidTypeConstruction.html +3 -7
- data/webpage/rdoc/RubyBreaker/Errors/SubtypeFailure.html +3 -7
- data/webpage/rdoc/RubyBreaker/Errors/TypeError.html +3 -7
- data/webpage/rdoc/RubyBreaker/Errors/UserError.html +3 -7
- data/webpage/rdoc/RubyBreaker/Errors.html +3 -7
- data/webpage/rdoc/RubyBreaker/ObjectPosition.html +3 -7
- data/webpage/rdoc/RubyBreaker/Position.html +3 -7
- data/webpage/rdoc/RubyBreaker/RDocSupport.html +3 -7
- data/webpage/rdoc/RubyBreaker/RubyTypeUtils.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/Inspector.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/MethodInfo.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/Monitor.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorInstaller.html +10 -14
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorSwitch.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/MonitorUtils.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/ObjectWrapper.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/Pluggable.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSigParser.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSigUnparser.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime/TypeSystem.html +3 -7
- data/webpage/rdoc/RubyBreaker/Runtime.html +42 -39
- data/webpage/rdoc/RubyBreaker/TypeComparer.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/AnyType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/BlockType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/DuckType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/FusionType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/MethodListType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/MethodType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/NilType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/NominalType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/OptionalType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/OrType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/SelfType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/Type.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs/VarLengthType.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeDefs.html +3 -7
- data/webpage/rdoc/RubyBreaker/TypeUnparser.html +3 -7
- data/webpage/rdoc/RubyBreaker/Typing.html +3 -7
- data/webpage/rdoc/RubyBreaker/Util.html +3 -7
- data/webpage/rdoc/RubyBreaker.html +48 -15
- data/webpage/rdoc/Test/Unit.html +3 -7
- data/webpage/rdoc/Test.html +3 -7
- data/webpage/rdoc/created.rid +18 -17
- data/webpage/rdoc/index.html +3 -7
- data/webpage/rdoc/js/search_index.js +1 -1
- data/webpage/rdoc/table_of_contents.html +28 -36
- data/webpage/rubybreaker.css +8 -6
- data/webpage/topics.html +85 -0
- data/webpage/tutorial.html +331 -0
- metadata +14 -8
- data/lib/rubybreaker/doc.rb +0 -3
- data/webpage/rdoc/Kernel.html +0 -286
- data/webpage/rdoc/Test/Unit/TestCase.html +0 -309
|
@@ -174,17 +174,13 @@
|
|
|
174
174
|
|
|
175
175
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
176
176
|
|
|
177
|
-
<li><a href="../../Test.html">Test</a>
|
|
178
|
-
|
|
179
|
-
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
180
|
-
|
|
181
|
-
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
182
|
-
|
|
183
177
|
<li><a href="../../Rake.html">Rake</a>
|
|
184
178
|
|
|
185
179
|
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
186
180
|
|
|
187
|
-
<li><a href="../../
|
|
181
|
+
<li><a href="../../Test.html">Test</a>
|
|
182
|
+
|
|
183
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
188
184
|
|
|
189
185
|
<li><a href="../../Object.html">Object</a>
|
|
190
186
|
|
|
@@ -174,17 +174,13 @@
|
|
|
174
174
|
|
|
175
175
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
176
176
|
|
|
177
|
-
<li><a href="../../Test.html">Test</a>
|
|
178
|
-
|
|
179
|
-
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
180
|
-
|
|
181
|
-
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
182
|
-
|
|
183
177
|
<li><a href="../../Rake.html">Rake</a>
|
|
184
178
|
|
|
185
179
|
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
186
180
|
|
|
187
|
-
<li><a href="../../
|
|
181
|
+
<li><a href="../../Test.html">Test</a>
|
|
182
|
+
|
|
183
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
188
184
|
|
|
189
185
|
<li><a href="../../Object.html">Object</a>
|
|
190
186
|
|
|
@@ -178,17 +178,13 @@
|
|
|
178
178
|
|
|
179
179
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
180
180
|
|
|
181
|
-
<li><a href="../../Test.html">Test</a>
|
|
182
|
-
|
|
183
|
-
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
184
|
-
|
|
185
|
-
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
186
|
-
|
|
187
181
|
<li><a href="../../Rake.html">Rake</a>
|
|
188
182
|
|
|
189
183
|
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
190
184
|
|
|
191
|
-
<li><a href="../../
|
|
185
|
+
<li><a href="../../Test.html">Test</a>
|
|
186
|
+
|
|
187
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
192
188
|
|
|
193
189
|
<li><a href="../../Object.html">Object</a>
|
|
194
190
|
|
|
@@ -183,17 +183,13 @@
|
|
|
183
183
|
|
|
184
184
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
185
185
|
|
|
186
|
-
<li><a href="../../Test.html">Test</a>
|
|
187
|
-
|
|
188
|
-
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
189
|
-
|
|
190
|
-
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
191
|
-
|
|
192
186
|
<li><a href="../../Rake.html">Rake</a>
|
|
193
187
|
|
|
194
188
|
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
195
189
|
|
|
196
|
-
<li><a href="../../
|
|
190
|
+
<li><a href="../../Test.html">Test</a>
|
|
191
|
+
|
|
192
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
197
193
|
|
|
198
194
|
<li><a href="../../Object.html">Object</a>
|
|
199
195
|
|
|
@@ -174,17 +174,13 @@
|
|
|
174
174
|
|
|
175
175
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
176
176
|
|
|
177
|
-
<li><a href="../../Test.html">Test</a>
|
|
178
|
-
|
|
179
|
-
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
180
|
-
|
|
181
|
-
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
182
|
-
|
|
183
177
|
<li><a href="../../Rake.html">Rake</a>
|
|
184
178
|
|
|
185
179
|
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
186
180
|
|
|
187
|
-
<li><a href="../../
|
|
181
|
+
<li><a href="../../Test.html">Test</a>
|
|
182
|
+
|
|
183
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
188
184
|
|
|
189
185
|
<li><a href="../../Object.html">Object</a>
|
|
190
186
|
|
|
@@ -158,17 +158,13 @@
|
|
|
158
158
|
|
|
159
159
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
160
160
|
|
|
161
|
-
<li><a href="../Test.html">Test</a>
|
|
162
|
-
|
|
163
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
164
|
-
|
|
165
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
166
|
-
|
|
167
161
|
<li><a href="../Rake.html">Rake</a>
|
|
168
162
|
|
|
169
163
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
170
164
|
|
|
171
|
-
<li><a href="../
|
|
165
|
+
<li><a href="../Test.html">Test</a>
|
|
166
|
+
|
|
167
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
172
168
|
|
|
173
169
|
<li><a href="../Object.html">Object</a>
|
|
174
170
|
|
|
@@ -180,17 +180,13 @@
|
|
|
180
180
|
|
|
181
181
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
182
182
|
|
|
183
|
-
<li><a href="../Test.html">Test</a>
|
|
184
|
-
|
|
185
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
186
|
-
|
|
187
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
188
|
-
|
|
189
183
|
<li><a href="../Rake.html">Rake</a>
|
|
190
184
|
|
|
191
185
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
192
186
|
|
|
193
|
-
<li><a href="../
|
|
187
|
+
<li><a href="../Test.html">Test</a>
|
|
188
|
+
|
|
189
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
194
190
|
|
|
195
191
|
<li><a href="../Object.html">Object</a>
|
|
196
192
|
|
|
@@ -180,17 +180,13 @@
|
|
|
180
180
|
|
|
181
181
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
182
182
|
|
|
183
|
-
<li><a href="../Test.html">Test</a>
|
|
184
|
-
|
|
185
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
186
|
-
|
|
187
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
188
|
-
|
|
189
183
|
<li><a href="../Rake.html">Rake</a>
|
|
190
184
|
|
|
191
185
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
192
186
|
|
|
193
|
-
<li><a href="../
|
|
187
|
+
<li><a href="../Test.html">Test</a>
|
|
188
|
+
|
|
189
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
194
190
|
|
|
195
191
|
<li><a href="../Object.html">Object</a>
|
|
196
192
|
|
|
@@ -170,17 +170,13 @@
|
|
|
170
170
|
|
|
171
171
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
172
172
|
|
|
173
|
-
<li><a href="../Test.html">Test</a>
|
|
174
|
-
|
|
175
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
176
|
-
|
|
177
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
178
|
-
|
|
179
173
|
<li><a href="../Rake.html">Rake</a>
|
|
180
174
|
|
|
181
175
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
182
176
|
|
|
183
|
-
<li><a href="../
|
|
177
|
+
<li><a href="../Test.html">Test</a>
|
|
178
|
+
|
|
179
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
184
180
|
|
|
185
181
|
<li><a href="../Object.html">Object</a>
|
|
186
182
|
|
|
@@ -100,6 +100,8 @@
|
|
|
100
100
|
|
|
101
101
|
<ul class="link-list">
|
|
102
102
|
|
|
103
|
+
<li><a href="#method-c-break">::break</a>
|
|
104
|
+
|
|
103
105
|
<li><a href="#method-c-breakable">::breakable</a>
|
|
104
106
|
|
|
105
107
|
<li><a href="#method-c-defined_logger-3F">::defined_logger?</a>
|
|
@@ -216,17 +218,13 @@
|
|
|
216
218
|
|
|
217
219
|
<li><a href="./RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
218
220
|
|
|
219
|
-
<li><a href="./Test.html">Test</a>
|
|
220
|
-
|
|
221
|
-
<li><a href="./Test/Unit.html">Test::Unit</a>
|
|
222
|
-
|
|
223
|
-
<li><a href="./Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
224
|
-
|
|
225
221
|
<li><a href="./Rake.html">Rake</a>
|
|
226
222
|
|
|
227
223
|
<li><a href="./Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
228
224
|
|
|
229
|
-
<li><a href="./
|
|
225
|
+
<li><a href="./Test.html">Test</a>
|
|
226
|
+
|
|
227
|
+
<li><a href="./Test/Unit.html">Test::Unit</a>
|
|
230
228
|
|
|
231
229
|
<li><a href="./Object.html">Object</a>
|
|
232
230
|
|
|
@@ -247,7 +245,8 @@
|
|
|
247
245
|
Library.</pre>
|
|
248
246
|
|
|
249
247
|
<p><a href="RubyBreaker.html">RubyBreaker</a> is a dynamic instrumentation and
|
|
250
|
-
monitoring tool that generates type documentation for Ruby
|
|
248
|
+
monitoring tool that generates type documentation automatically for Ruby
|
|
249
|
+
programs.</p>
|
|
251
250
|
|
|
252
251
|
</div><!-- description -->
|
|
253
252
|
|
|
@@ -310,6 +309,36 @@ href="RubyBreaker.html">RubyBreaker</a> task information</p>
|
|
|
310
309
|
<h3 class="section-header">Public Class Methods</h3>
|
|
311
310
|
|
|
312
311
|
|
|
312
|
+
<div id="method-c-break" class="method-detail ">
|
|
313
|
+
|
|
314
|
+
<div class="method-heading">
|
|
315
|
+
<span class="method-name">break</span><span
|
|
316
|
+
class="method-args">(*mods)</span>
|
|
317
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
318
|
+
</div>
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
<div class="method-description">
|
|
322
|
+
|
|
323
|
+
<p>This method just redirects to Runtime’s method.</p>
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
<div class="method-source-code" id="break-source">
|
|
328
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 93</span>
|
|
329
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-keyword">break</span>(*<span class="ruby-identifier">mods</span>)
|
|
330
|
+
<span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">break</span>(*<span class="ruby-identifier">mods</span>)
|
|
331
|
+
<span class="ruby-keyword">end</span></pre>
|
|
332
|
+
</div><!-- break-source -->
|
|
333
|
+
|
|
334
|
+
</div>
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
</div><!-- break-method -->
|
|
340
|
+
|
|
341
|
+
|
|
313
342
|
<div id="method-c-breakable" class="method-detail ">
|
|
314
343
|
|
|
315
344
|
<div class="method-heading">
|
|
@@ -321,12 +350,15 @@ href="RubyBreaker.html">RubyBreaker</a> task information</p>
|
|
|
321
350
|
|
|
322
351
|
<div class="method-description">
|
|
323
352
|
|
|
324
|
-
<p>This method just redirects to Runtime’s method
|
|
353
|
+
<p>This method just redirects to Runtime’s method.
|
|
354
|
+
<strong>DEPRECATED</strong>: Use +<a
|
|
355
|
+
href="RubyBreaker.html#method-c-break">::break</a>+ to indicate the point
|
|
356
|
+
of entry.</p>
|
|
325
357
|
|
|
326
358
|
|
|
327
359
|
|
|
328
360
|
<div class="method-source-code" id="breakable-source">
|
|
329
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line
|
|
361
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 88</span>
|
|
330
362
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">breakable</span>(*<span class="ruby-identifier">mods</span>)
|
|
331
363
|
<span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">breakable</span>(*<span class="ruby-identifier">mods</span>)
|
|
332
364
|
<span class="ruby-keyword">end</span></pre>
|
|
@@ -464,7 +496,7 @@ entry.</p>
|
|
|
464
496
|
|
|
465
497
|
|
|
466
498
|
<div class="method-source-code" id="monitor-source">
|
|
467
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line
|
|
499
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 83</span>
|
|
468
500
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">monitor</span>()
|
|
469
501
|
<span class="ruby-keyword">end</span></pre>
|
|
470
502
|
</div><!-- monitor-source -->
|
|
@@ -495,7 +527,7 @@ href="RubyBreaker.html">RubyBreaker</a> as a shell program.</p>
|
|
|
495
527
|
|
|
496
528
|
|
|
497
529
|
<div class="method-source-code" id="run-source">
|
|
498
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker.rb, line
|
|
530
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker.rb, line 165</span>
|
|
499
531
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">run</span>(*<span class="ruby-identifier">mods</span>)
|
|
500
532
|
<span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">setup_logger</span>() <span class="ruby-keyword">unless</span> <span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">defined_logger?</span>()
|
|
501
533
|
|
|
@@ -505,12 +537,13 @@ href="RubyBreaker.html">RubyBreaker</a> as a shell program.</p>
|
|
|
505
537
|
<span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">verbose</span>(<span class="ruby-string">"Running RubyBreaker within a testcase"</span>)
|
|
506
538
|
<span class="ruby-identifier">task</span> = <span class="ruby-keyword">self</span>.<span class="ruby-identifier">task</span>
|
|
507
539
|
<span class="ruby-constant">OPTION_PARSER</span>.<span class="ruby-identifier">parse</span>(*<span class="ruby-identifier">task</span>[<span class="ruby-value">:rubybreaker_opts</span>])
|
|
508
|
-
<span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">
|
|
540
|
+
<span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">break</span>(*<span class="ruby-identifier">task</span>[<span class="ruby-value">:break</span>])
|
|
509
541
|
<span class="ruby-identifier">task_name</span> = <span class="ruby-identifier">task</span>[<span class="ruby-value">:name</span>]
|
|
510
542
|
<span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">verbose</span>(<span class="ruby-string">"Done reading task information"</span>)
|
|
511
543
|
<span class="ruby-identifier">io_file</span> = <span class="ruby-keyword">self</span>.<span class="ruby-identifier">io_file</span>(<span class="ruby-identifier">task_name</span>)
|
|
512
|
-
<span class="ruby-keyword">elsif</span> <span class="ruby-constant">OPTIONS</span>[<span class="ruby-value">:
|
|
513
|
-
<span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">
|
|
544
|
+
<span class="ruby-keyword">elsif</span> <span class="ruby-constant">OPTIONS</span>[<span class="ruby-value">:prog</span>] <span class="ruby-comment"># running in shell mode </span>
|
|
545
|
+
<span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">break</span>(*<span class="ruby-identifier">mods</span>) <span class="ruby-comment"># should not happen but for backward-compatibility</span>
|
|
546
|
+
<span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">break</span>(*<span class="ruby-constant">OPTIONS</span>[<span class="ruby-value">:break</span>])
|
|
514
547
|
<span class="ruby-identifier">io_file</span> = <span class="ruby-keyword">self</span>.<span class="ruby-identifier">io_file</span>(<span class="ruby-constant">OPTIONS</span>[<span class="ruby-value">:prog_file</span>])
|
|
515
548
|
<span class="ruby-keyword">else</span>
|
|
516
549
|
<span class="ruby-comment"># Otherwise, assume there are no explicit IO files.</span>
|
data/webpage/rdoc/Test/Unit.html
CHANGED
|
@@ -157,17 +157,13 @@
|
|
|
157
157
|
|
|
158
158
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
159
159
|
|
|
160
|
-
<li><a href="../Test.html">Test</a>
|
|
161
|
-
|
|
162
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
163
|
-
|
|
164
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
165
|
-
|
|
166
160
|
<li><a href="../Rake.html">Rake</a>
|
|
167
161
|
|
|
168
162
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
169
163
|
|
|
170
|
-
<li><a href="../
|
|
164
|
+
<li><a href="../Test.html">Test</a>
|
|
165
|
+
|
|
166
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
171
167
|
|
|
172
168
|
<li><a href="../Object.html">Object</a>
|
|
173
169
|
|
data/webpage/rdoc/Test.html
CHANGED
|
@@ -157,17 +157,13 @@
|
|
|
157
157
|
|
|
158
158
|
<li><a href="./RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
159
159
|
|
|
160
|
-
<li><a href="./Test.html">Test</a>
|
|
161
|
-
|
|
162
|
-
<li><a href="./Test/Unit.html">Test::Unit</a>
|
|
163
|
-
|
|
164
|
-
<li><a href="./Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
165
|
-
|
|
166
160
|
<li><a href="./Rake.html">Rake</a>
|
|
167
161
|
|
|
168
162
|
<li><a href="./Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
169
163
|
|
|
170
|
-
<li><a href="./
|
|
164
|
+
<li><a href="./Test.html">Test</a>
|
|
165
|
+
|
|
166
|
+
<li><a href="./Test/Unit.html">Test::Unit</a>
|
|
171
167
|
|
|
172
168
|
<li><a href="./Object.html">Object</a>
|
|
173
169
|
|
data/webpage/rdoc/created.rid
CHANGED
|
@@ -1,30 +1,31 @@
|
|
|
1
|
-
|
|
1
|
+
Sat, 23 Jun 2012 15:20:38 -0500
|
|
2
|
+
README.md Sat, 23 Jun 2012 15:10:26 -0500
|
|
3
|
+
TUTORIAL.md Sat, 23 Jun 2012 15:11:12 -0500
|
|
2
4
|
lib/rubybreaker/debug/context.rb Sun, 06 May 2012 15:29:43 -0500
|
|
3
|
-
lib/rubybreaker/debug/debug.rb
|
|
5
|
+
lib/rubybreaker/debug/debug.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
4
6
|
lib/rubybreaker/debug/error.rb Sat, 19 May 2012 11:13:13 -0500
|
|
5
7
|
lib/rubybreaker/debug.rb Sat, 19 May 2012 11:25:04 -0500
|
|
6
|
-
lib/rubybreaker/doc/rdoc.rb
|
|
7
|
-
lib/rubybreaker/
|
|
8
|
-
lib/rubybreaker/runtime/
|
|
9
|
-
lib/rubybreaker/runtime/
|
|
10
|
-
lib/rubybreaker/runtime/object_wrapper.rb Mon, 11 Jun 2012 09:47:48 -0500
|
|
8
|
+
lib/rubybreaker/doc/rdoc.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
9
|
+
lib/rubybreaker/runtime/inspector.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
10
|
+
lib/rubybreaker/runtime/monitor.rb Wed, 13 Jun 2012 21:25:51 -0500
|
|
11
|
+
lib/rubybreaker/runtime/object_wrapper.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
11
12
|
lib/rubybreaker/runtime/overrides.rb Thu, 17 May 2012 22:39:47 -0500
|
|
12
13
|
lib/rubybreaker/runtime/pluggable.rb Tue, 15 May 2012 19:42:18 -0500
|
|
13
|
-
lib/rubybreaker/runtime/type_system.rb
|
|
14
|
+
lib/rubybreaker/runtime/type_system.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
14
15
|
lib/rubybreaker/runtime/typesig_parser.rb Thu, 07 Jun 2012 10:53:08 -0500
|
|
15
|
-
lib/rubybreaker/runtime/typesig_unparser.rb
|
|
16
|
+
lib/rubybreaker/runtime/typesig_unparser.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
16
17
|
lib/rubybreaker/runtime/util.rb Mon, 14 May 2012 22:42:02 -0500
|
|
17
|
-
lib/rubybreaker/runtime.rb
|
|
18
|
-
lib/rubybreaker/task.rb
|
|
19
|
-
lib/rubybreaker/test/rspec.rb
|
|
20
|
-
lib/rubybreaker/test/testcase.rb
|
|
18
|
+
lib/rubybreaker/runtime.rb Sat, 23 Jun 2012 13:29:28 -0500
|
|
19
|
+
lib/rubybreaker/task.rb Sat, 23 Jun 2012 13:26:24 -0500
|
|
20
|
+
lib/rubybreaker/test/rspec.rb Mon, 11 Jun 2012 16:49:57 -0500
|
|
21
|
+
lib/rubybreaker/test/testcase.rb Mon, 11 Jun 2012 16:48:43 -0500
|
|
21
22
|
lib/rubybreaker/test.rb Sun, 20 May 2012 21:10:31 -0500
|
|
22
|
-
lib/rubybreaker/type/type.rb
|
|
23
|
+
lib/rubybreaker/type/type.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
23
24
|
lib/rubybreaker/type/type_comparer.rb Wed, 16 May 2012 23:20:10 -0500
|
|
24
25
|
lib/rubybreaker/type/type_unparser.rb Tue, 22 May 2012 18:41:24 -0500
|
|
25
26
|
lib/rubybreaker/type.rb Thu, 10 May 2012 19:24:47 -0500
|
|
26
27
|
lib/rubybreaker/typing/rubytype.rb Sun, 06 May 2012 15:30:57 -0500
|
|
27
|
-
lib/rubybreaker/typing/subtyping.rb
|
|
28
|
+
lib/rubybreaker/typing/subtyping.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
28
29
|
lib/rubybreaker/typing.rb Sun, 06 May 2012 14:40:10 -0500
|
|
29
|
-
lib/rubybreaker/util.rb
|
|
30
|
-
lib/rubybreaker.rb
|
|
30
|
+
lib/rubybreaker/util.rb Mon, 11 Jun 2012 10:08:05 -0500
|
|
31
|
+
lib/rubybreaker.rb Sat, 23 Jun 2012 13:35:36 -0500
|
data/webpage/rdoc/index.html
CHANGED
|
@@ -140,17 +140,13 @@
|
|
|
140
140
|
|
|
141
141
|
<li><a href="./RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
142
142
|
|
|
143
|
-
<li><a href="./Test.html">Test</a>
|
|
144
|
-
|
|
145
|
-
<li><a href="./Test/Unit.html">Test::Unit</a>
|
|
146
|
-
|
|
147
|
-
<li><a href="./Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
148
|
-
|
|
149
143
|
<li><a href="./Rake.html">Rake</a>
|
|
150
144
|
|
|
151
145
|
<li><a href="./Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
152
146
|
|
|
153
|
-
<li><a href="./
|
|
147
|
+
<li><a href="./Test.html">Test</a>
|
|
148
|
+
|
|
149
|
+
<li><a href="./Test/Unit.html">Test::Unit</a>
|
|
154
150
|
|
|
155
151
|
<li><a href="./Object.html">Object</a>
|
|
156
152
|
|