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
data/webpage/rdoc/Object.html
CHANGED
|
@@ -64,19 +64,7 @@
|
|
|
64
64
|
</nav>
|
|
65
65
|
|
|
66
66
|
|
|
67
|
-
<!-- Method Quickref -->
|
|
68
|
-
<nav id="method-list-section" class="section">
|
|
69
|
-
<h3 class="section-header">Methods</h3>
|
|
70
|
-
|
|
71
|
-
<ul class="link-list">
|
|
72
|
-
|
|
73
|
-
<li><a href="#method-i-22-23-7BRUBYBREAKER_RSPEC_PREFIX-7D_describe-22">#"#{RUBYBREAKER_RSPEC_PREFIX}_describe"</a>
|
|
74
|
-
|
|
75
|
-
<li><a href="#method-i-describe">#describe</a>
|
|
76
67
|
|
|
77
|
-
</ul>
|
|
78
|
-
</nav>
|
|
79
|
-
|
|
80
68
|
</div>
|
|
81
69
|
|
|
82
70
|
<div id="project-metadata">
|
|
@@ -176,17 +164,13 @@
|
|
|
176
164
|
|
|
177
165
|
<li><a href="./RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
178
166
|
|
|
179
|
-
<li><a href="./Test.html">Test</a>
|
|
180
|
-
|
|
181
|
-
<li><a href="./Test/Unit.html">Test::Unit</a>
|
|
182
|
-
|
|
183
|
-
<li><a href="./Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
184
|
-
|
|
185
167
|
<li><a href="./Rake.html">Rake</a>
|
|
186
168
|
|
|
187
169
|
<li><a href="./Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
188
170
|
|
|
189
|
-
<li><a href="./
|
|
171
|
+
<li><a href="./Test.html">Test</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="./Test/Unit.html">Test::Unit</a>
|
|
190
174
|
|
|
191
175
|
<li><a href="./Object.html">Object</a>
|
|
192
176
|
|
|
@@ -212,95 +196,11 @@
|
|
|
212
196
|
|
|
213
197
|
|
|
214
198
|
|
|
215
|
-
<!-- Constants -->
|
|
216
|
-
<section id="constants-list" class="section">
|
|
217
|
-
<h3 class="section-header">Constants</h3>
|
|
218
|
-
<dl>
|
|
219
|
-
|
|
220
|
-
<dt id="RUBYBREAKER_RSPEC_PREFIX">RUBYBREAKER_RSPEC_PREFIX
|
|
221
|
-
|
|
222
|
-
<dd class="description"><p>-</p>
|
|
223
|
-
|
|
224
|
-
<pre>This file overrides the describe method of RSpec to call the RubyBreaker
|
|
225
|
-
setup first.</pre>
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
</dl>
|
|
229
|
-
</section>
|
|
230
|
-
|
|
231
199
|
|
|
232
200
|
|
|
233
201
|
|
|
234
202
|
<!-- Methods -->
|
|
235
203
|
|
|
236
|
-
<section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
|
|
237
|
-
<h3 class="section-header">Public Instance Methods</h3>
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
<div id="method-i-22-23-7BRUBYBREAKER_RSPEC_PREFIX-7D_describe-22" class="method-detail method-alias">
|
|
241
|
-
|
|
242
|
-
<div class="method-heading">
|
|
243
|
-
<span class="method-name">"#{RUBYBREAKER_RSPEC_PREFIX}_describe"</span><span
|
|
244
|
-
class="method-args">(*args,&blk)</span>
|
|
245
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
246
|
-
</div>
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
<div class="method-description">
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
</div>
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
<div class="aliases">
|
|
261
|
-
Alias for: <a href="Object.html#method-i-describe">describe</a>
|
|
262
|
-
</div>
|
|
263
|
-
|
|
264
|
-
</div><!-- 22-23-7BRUBYBREAKER_RSPEC_PREFIX-7D_describe-22-method -->
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
<div id="method-i-describe" class="method-detail ">
|
|
268
|
-
|
|
269
|
-
<div class="method-heading">
|
|
270
|
-
<span class="method-name">describe</span><span
|
|
271
|
-
class="method-args">(*args,&blk)</span>
|
|
272
|
-
<span class="method-click-advice">click to toggle source</span>
|
|
273
|
-
</div>
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
<div class="method-description">
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
<div class="method-source-code" id="describe-source">
|
|
283
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker/test/rspec.rb, line 11</span>
|
|
284
|
-
<span class="ruby-keyword">def</span> <span class="ruby-identifier">describe</span>(*<span class="ruby-identifier">args</span>,&<span class="ruby-identifier">blk</span>)
|
|
285
|
-
<span class="ruby-constant">RubyBreaker</span>.<span class="ruby-identifier">run</span> <span class="ruby-keyword">if</span> <span class="ruby-keyword">defined?</span>(<span class="ruby-constant">RubyBreaker</span>)
|
|
286
|
-
<span class="ruby-identifier">send</span>(<span class="ruby-value">:"#{RUBYBREAKER_RSPEC_PREFIX}_describe"</span>, *<span class="ruby-identifier">args</span>, &<span class="ruby-identifier">blk</span>)
|
|
287
|
-
<span class="ruby-keyword">end</span></pre>
|
|
288
|
-
</div><!-- describe-source -->
|
|
289
|
-
|
|
290
|
-
</div>
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
<div class="aliases">
|
|
294
|
-
Also aliased as: <a href="Object.html#method-i-22-23-7BRUBYBREAKER_RSPEC_PREFIX-7D_describe-22">"#{RUBYBREAKER_RSPEC_PREFIX}_describe"</a>
|
|
295
|
-
</div>
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
</div><!-- describe-method -->
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
</section><!-- public-instance-method-details -->
|
|
303
|
-
|
|
304
204
|
</section><!-- 5Buntitled-5D -->
|
|
305
205
|
|
|
306
206
|
</div><!-- documentation -->
|
|
@@ -72,6 +72,10 @@
|
|
|
72
72
|
|
|
73
73
|
<li><a href="#method-c-new">::new</a>
|
|
74
74
|
|
|
75
|
+
<li><a href="#method-i-breakable">#breakable</a>
|
|
76
|
+
|
|
77
|
+
<li><a href="#method-i-breakable-3D">#breakable=</a>
|
|
78
|
+
|
|
75
79
|
</ul>
|
|
76
80
|
</nav>
|
|
77
81
|
|
|
@@ -174,17 +178,13 @@
|
|
|
174
178
|
|
|
175
179
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
176
180
|
|
|
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
181
|
<li><a href="../Rake.html">Rake</a>
|
|
184
182
|
|
|
185
183
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
186
184
|
|
|
187
|
-
<li><a href="../
|
|
185
|
+
<li><a href="../Test.html">Test</a>
|
|
186
|
+
|
|
187
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
188
188
|
|
|
189
189
|
<li><a href="../Object.html">Object</a>
|
|
190
190
|
|
|
@@ -213,7 +213,7 @@ href="RubyBreakerTestTask.html#method-c-new">::new</a>(:“testtask_test”) do
|
|
|
213
213
|
|
|
214
214
|
<pre>t.libs << "lib"
|
|
215
215
|
t.test_files = ["test/testtask/tc_testtask.rb"]
|
|
216
|
-
t.
|
|
216
|
+
t.break = ["SampleClassA"]</pre>
|
|
217
217
|
|
|
218
218
|
<p>end</p>
|
|
219
219
|
|
|
@@ -235,15 +235,15 @@ t.breakable = ["SampleClassA"]</pre>
|
|
|
235
235
|
<h3 class="section-header">Attributes</h3>
|
|
236
236
|
|
|
237
237
|
|
|
238
|
-
<div id="attribute-i-
|
|
238
|
+
<div id="attribute-i-break" class="method-detail">
|
|
239
239
|
<div class="method-heading attribute-method-heading">
|
|
240
|
-
<span class="method-name">
|
|
240
|
+
<span class="method-name">break</span><span
|
|
241
241
|
class="attribute-access-type">[RW]</span>
|
|
242
242
|
</div>
|
|
243
243
|
|
|
244
244
|
<div class="method-description">
|
|
245
245
|
|
|
246
|
-
<p>List of
|
|
246
|
+
<p>List of modules/classes to break</p>
|
|
247
247
|
|
|
248
248
|
</div>
|
|
249
249
|
</div>
|
|
@@ -288,12 +288,12 @@ options and store them in a yaml file.</p>
|
|
|
288
288
|
|
|
289
289
|
|
|
290
290
|
<div class="method-source-code" id="new-source">
|
|
291
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker/task.rb, line
|
|
291
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/task.rb, line 39</span>
|
|
292
292
|
<span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">taskname</span>=<span class="ruby-string">""</span>, *<span class="ruby-identifier">args</span>, &<span class="ruby-identifier">blk</span>)
|
|
293
293
|
|
|
294
294
|
<span class="ruby-comment"># Initialize extra instance variables</span>
|
|
295
295
|
<span class="ruby-ivar">@rubybreaker_opts</span> = []
|
|
296
|
-
<span class="ruby-ivar">@
|
|
296
|
+
<span class="ruby-ivar">@break</span> = <span class="ruby-keyword">nil</span>
|
|
297
297
|
|
|
298
298
|
<span class="ruby-comment"># Call the original constructor first</span>
|
|
299
299
|
<span class="ruby-keyword">super</span>(<span class="ruby-identifier">taskname</span>, *<span class="ruby-identifier">args</span>, &<span class="ruby-identifier">blk</span>)
|
|
@@ -310,14 +310,14 @@ options and store them in a yaml file.</p>
|
|
|
310
310
|
|
|
311
311
|
<span class="ruby-comment"># Construct the task configuration hash</span>
|
|
312
312
|
<span class="ruby-identifier">config</span> = {
|
|
313
|
-
<span class="ruby-
|
|
314
|
-
<span class="ruby-
|
|
315
|
-
<span class="ruby-
|
|
316
|
-
<span class="ruby-
|
|
313
|
+
<span class="ruby-value">:name</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">taskname</span>,
|
|
314
|
+
<span class="ruby-value">:rubybreaker_opts</span> =<span class="ruby-operator">></span> <span class="ruby-identifier">opts</span>,
|
|
315
|
+
<span class="ruby-value">:break</span> =<span class="ruby-operator">></span> [], <span class="ruby-comment"># Set doesn't work well with YAML; just use an array</span>
|
|
316
|
+
<span class="ruby-value">:test_files</span> =<span class="ruby-operator">></span> <span class="ruby-ivar">@test_files</span>,
|
|
317
317
|
}
|
|
318
318
|
|
|
319
319
|
<span class="ruby-comment"># This allows a bulk declaration of Breakable modules/classes</span>
|
|
320
|
-
<span class="ruby-ivar">@
|
|
320
|
+
<span class="ruby-ivar">@break</span>.<span class="ruby-identifier">each</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">b</span><span class="ruby-operator">|</span> <span class="ruby-identifier">config</span>[<span class="ruby-value">:break</span>] <span class="ruby-operator"><<</span> <span class="ruby-identifier">b</span> } <span class="ruby-keyword">if</span> <span class="ruby-ivar">@break</span>
|
|
321
321
|
|
|
322
322
|
<span class="ruby-comment"># This code segment is a clever way to store yaml data in a ruby file</span>
|
|
323
323
|
<span class="ruby-comment"># that reads its own yaml data after __END__ when loaded.</span>
|
|
@@ -361,6 +361,68 @@ __END__
|
|
|
361
361
|
|
|
362
362
|
</section><!-- public-class-method-details -->
|
|
363
363
|
|
|
364
|
+
<section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
|
|
365
|
+
<h3 class="section-header">Public Instance Methods</h3>
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
<div id="method-i-breakable" class="method-detail ">
|
|
369
|
+
|
|
370
|
+
<div class="method-heading">
|
|
371
|
+
<span class="method-name">breakable</span><span
|
|
372
|
+
class="method-args">()</span>
|
|
373
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
374
|
+
</div>
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
<div class="method-description">
|
|
378
|
+
|
|
379
|
+
<p>DEPRECATED accessor override</p>
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
<div class="method-source-code" id="breakable-source">
|
|
384
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/task.rb, line 31</span>
|
|
385
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier">breakable</span>(); <span class="ruby-ivar">@break</span> <span class="ruby-keyword">end</span></pre>
|
|
386
|
+
</div><!-- breakable-source -->
|
|
387
|
+
|
|
388
|
+
</div>
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
</div><!-- breakable-method -->
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
<div id="method-i-breakable-3D" class="method-detail ">
|
|
397
|
+
|
|
398
|
+
<div class="method-heading">
|
|
399
|
+
<span class="method-name">breakable=</span><span
|
|
400
|
+
class="method-args">(*args)</span>
|
|
401
|
+
<span class="method-click-advice">click to toggle source</span>
|
|
402
|
+
</div>
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
<div class="method-description">
|
|
406
|
+
|
|
407
|
+
<p>DEPRECATED accessor override</p>
|
|
408
|
+
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
<div class="method-source-code" id="breakable-3D-source">
|
|
412
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/task.rb, line 34</span>
|
|
413
|
+
<span class="ruby-keyword">def</span> <span class="ruby-identifier">breakable=</span>(*<span class="ruby-identifier">args</span>); <span class="ruby-keyword">self</span>.<span class="ruby-identifier">break</span>(*<span class="ruby-identifier">args</span>) <span class="ruby-keyword">end</span></pre>
|
|
414
|
+
</div><!-- breakable-3D-source -->
|
|
415
|
+
|
|
416
|
+
</div>
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
</div><!-- breakable-3D-method -->
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
</section><!-- public-instance-method-details -->
|
|
425
|
+
|
|
364
426
|
</section><!-- 5Buntitled-5D -->
|
|
365
427
|
|
|
366
428
|
</div><!-- documentation -->
|
data/webpage/rdoc/Rake.html
CHANGED
|
@@ -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
|
|
|
@@ -168,17 +168,13 @@
|
|
|
168
168
|
|
|
169
169
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
170
170
|
|
|
171
|
-
<li><a href="../Test.html">Test</a>
|
|
172
|
-
|
|
173
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
174
|
-
|
|
175
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
176
|
-
|
|
177
171
|
<li><a href="../Rake.html">Rake</a>
|
|
178
172
|
|
|
179
173
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
180
174
|
|
|
181
|
-
<li><a href="../
|
|
175
|
+
<li><a href="../Test.html">Test</a>
|
|
176
|
+
|
|
177
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
182
178
|
|
|
183
179
|
<li><a href="../Object.html">Object</a>
|
|
184
180
|
|
|
@@ -235,7 +231,7 @@ or +<a href="../RubyBreaker.html#method-c-run">RubyBreaker.run</a>+ method</p>
|
|
|
235
231
|
|
|
236
232
|
|
|
237
233
|
<div class="method-source-code" id="included-source">
|
|
238
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line
|
|
234
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 100</span>
|
|
239
235
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">included</span>(<span class="ruby-identifier">mod</span>)
|
|
240
236
|
<span class="ruby-constant">Runtime</span><span class="ruby-operator">::</span><span class="ruby-constant">BREAKABLES</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">mod</span> <span class="ruby-operator"><<</span> <span class="ruby-constant">Runtime</span>.<span class="ruby-identifier">eigen_class</span>(<span class="ruby-identifier">mod</span>)
|
|
241
237
|
<span class="ruby-keyword">end</span></pre>
|
|
@@ -168,17 +168,13 @@
|
|
|
168
168
|
|
|
169
169
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
170
170
|
|
|
171
|
-
<li><a href="../Test.html">Test</a>
|
|
172
|
-
|
|
173
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
174
|
-
|
|
175
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
176
|
-
|
|
177
171
|
<li><a href="../Rake.html">Rake</a>
|
|
178
172
|
|
|
179
173
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
180
174
|
|
|
181
|
-
<li><a href="../
|
|
175
|
+
<li><a href="../Test.html">Test</a>
|
|
176
|
+
|
|
177
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
182
178
|
|
|
183
179
|
<li><a href="../Object.html">Object</a>
|
|
184
180
|
|
|
@@ -231,7 +227,7 @@
|
|
|
231
227
|
|
|
232
228
|
|
|
233
229
|
<div class="method-source-code" id="included-source">
|
|
234
|
-
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line
|
|
230
|
+
<pre><span class="ruby-comment"># File lib/rubybreaker/runtime.rb, line 107</span>
|
|
235
231
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">included</span>(<span class="ruby-identifier">mod</span>)
|
|
236
232
|
<span class="ruby-comment"># Runtime.broken(mod)</span>
|
|
237
233
|
<span class="ruby-keyword">end</span></pre>
|
|
@@ -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
|
|
|
@@ -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
|
|
|
@@ -164,17 +164,13 @@
|
|
|
164
164
|
|
|
165
165
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
166
166
|
|
|
167
|
-
<li><a href="../../Test.html">Test</a>
|
|
168
|
-
|
|
169
|
-
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
170
|
-
|
|
171
|
-
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
172
|
-
|
|
173
167
|
<li><a href="../../Rake.html">Rake</a>
|
|
174
168
|
|
|
175
169
|
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
176
170
|
|
|
177
|
-
<li><a href="../../
|
|
171
|
+
<li><a href="../../Test.html">Test</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
178
174
|
|
|
179
175
|
<li><a href="../../Object.html">Object</a>
|
|
180
176
|
|
|
@@ -164,17 +164,13 @@
|
|
|
164
164
|
|
|
165
165
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
166
166
|
|
|
167
|
-
<li><a href="../../Test.html">Test</a>
|
|
168
|
-
|
|
169
|
-
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
170
|
-
|
|
171
|
-
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
172
|
-
|
|
173
167
|
<li><a href="../../Rake.html">Rake</a>
|
|
174
168
|
|
|
175
169
|
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
176
170
|
|
|
177
|
-
<li><a href="../../
|
|
171
|
+
<li><a href="../../Test.html">Test</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
178
174
|
|
|
179
175
|
<li><a href="../../Object.html">Object</a>
|
|
180
176
|
|
|
@@ -164,17 +164,13 @@
|
|
|
164
164
|
|
|
165
165
|
<li><a href="../../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
166
166
|
|
|
167
|
-
<li><a href="../../Test.html">Test</a>
|
|
168
|
-
|
|
169
|
-
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
170
|
-
|
|
171
|
-
<li><a href="../../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
172
|
-
|
|
173
167
|
<li><a href="../../Rake.html">Rake</a>
|
|
174
168
|
|
|
175
169
|
<li><a href="../../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
176
170
|
|
|
177
|
-
<li><a href="../../
|
|
171
|
+
<li><a href="../../Test.html">Test</a>
|
|
172
|
+
|
|
173
|
+
<li><a href="../../Test/Unit.html">Test::Unit</a>
|
|
178
174
|
|
|
179
175
|
<li><a href="../../Object.html">Object</a>
|
|
180
176
|
|
|
@@ -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
|
|
|
@@ -176,17 +176,13 @@
|
|
|
176
176
|
|
|
177
177
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
178
178
|
|
|
179
|
-
<li><a href="../Test.html">Test</a>
|
|
180
|
-
|
|
181
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
182
|
-
|
|
183
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
184
|
-
|
|
185
179
|
<li><a href="../Rake.html">Rake</a>
|
|
186
180
|
|
|
187
181
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
188
182
|
|
|
189
|
-
<li><a href="../
|
|
183
|
+
<li><a href="../Test.html">Test</a>
|
|
184
|
+
|
|
185
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
190
186
|
|
|
191
187
|
<li><a href="../Object.html">Object</a>
|
|
192
188
|
|
|
@@ -182,17 +182,13 @@
|
|
|
182
182
|
|
|
183
183
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
184
184
|
|
|
185
|
-
<li><a href="../Test.html">Test</a>
|
|
186
|
-
|
|
187
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
188
|
-
|
|
189
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
190
|
-
|
|
191
185
|
<li><a href="../Rake.html">Rake</a>
|
|
192
186
|
|
|
193
187
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
194
188
|
|
|
195
|
-
<li><a href="../
|
|
189
|
+
<li><a href="../Test.html">Test</a>
|
|
190
|
+
|
|
191
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
196
192
|
|
|
197
193
|
<li><a href="../Object.html">Object</a>
|
|
198
194
|
|
|
@@ -182,17 +182,13 @@
|
|
|
182
182
|
|
|
183
183
|
<li><a href="../RubyBreaker/Util.html">RubyBreaker::Util</a>
|
|
184
184
|
|
|
185
|
-
<li><a href="../Test.html">Test</a>
|
|
186
|
-
|
|
187
|
-
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
188
|
-
|
|
189
|
-
<li><a href="../Test/Unit/TestCase.html">Test::Unit::TestCase</a>
|
|
190
|
-
|
|
191
185
|
<li><a href="../Rake.html">Rake</a>
|
|
192
186
|
|
|
193
187
|
<li><a href="../Rake/RubyBreakerTestTask.html">Rake::RubyBreakerTestTask</a>
|
|
194
188
|
|
|
195
|
-
<li><a href="../
|
|
189
|
+
<li><a href="../Test.html">Test</a>
|
|
190
|
+
|
|
191
|
+
<li><a href="../Test/Unit.html">Test::Unit</a>
|
|
196
192
|
|
|
197
193
|
<li><a href="../Object.html">Object</a>
|
|
198
194
|
|
|
@@ -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
|
|