isimud 1.3.9 → 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/.yardoc/checksums +0 -15
- data/.yardoc/object_types +0 -0
- data/.yardoc/objects/root.dat +0 -0
- data/Gemfile +2 -2
- data/Gemfile.lock +17 -13
- data/LICENSE.txt +1 -1
- data/README.md +98 -62
- data/Rakefile +1 -1
- data/checksum/isimud-1.4.0.gem.sha512 +1 -0
- data/doc/Isimud.html +118 -138
- data/doc/Isimud/BunnyClient.html +2 -2
- data/doc/Isimud/Client.html +2 -2
- data/doc/Isimud/Event.html +2 -2
- data/doc/Isimud/EventListener.html +208 -88
- data/doc/Isimud/EventObserver.html +96 -31
- data/doc/Isimud/EventObserver/ClassMethods.html +14 -14
- data/doc/Isimud/Generators.html +2 -2
- data/doc/Isimud/Logging.html +2 -2
- data/doc/Isimud/ModelWatcher.html +2 -2
- data/doc/Isimud/ModelWatcher/ClassMethods.html +2 -2
- data/doc/Isimud/Railtie.html +2 -2
- data/doc/Isimud/TestClient.html +2 -2
- data/doc/Isimud/TestClient/Queue.html +74 -2
- data/doc/_index.html +2 -195
- data/doc/class_list.html +1 -1
- data/doc/file.LICENSE.html +3 -3
- data/doc/file.README.html +157 -65
- data/doc/index.html +157 -65
- data/doc/method_list.html +0 -732
- data/doc/top-level-namespace.html +2 -12
- data/lib/isimud.rb +22 -17
- data/lib/isimud/bunny_client.rb +12 -10
- data/lib/isimud/client.rb +10 -1
- data/lib/isimud/event_listener.rb +6 -6
- data/lib/isimud/test_client.rb +12 -12
- data/lib/isimud/version.rb +1 -1
- data/release +1 -1
- data/spec/isimud/bunny_client_spec.rb +28 -27
- data/spec/isimud/client_spec.rb +50 -5
- metadata +3 -4
- metadata.gz.sig +0 -0
- data/doc/Isimud/Generators/ConfigGenerator.html +0 -192
- data/doc/Isimud/Generators/InitializerGenerator.html +0 -192
@@ -260,7 +260,7 @@
|
|
260
260
|
<li class="public ">
|
261
261
|
<span class="summary_signature">
|
262
262
|
|
263
|
-
<a href="#observe_events-instance_method" title="#observe_events (instance method)">- (Object) <strong>observe_events</strong>(client) </a>
|
263
|
+
<a href="#observe_events-instance_method" title="#observe_events (instance method)">- (Object) <strong>observe_events</strong>(client, refresh_bindings = true) </a>
|
264
264
|
|
265
265
|
|
266
266
|
|
@@ -379,13 +379,13 @@ when an observer is to be made active without an update.</p>
|
|
379
379
|
<pre class="lines">
|
380
380
|
|
381
381
|
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
382
|
+
80
|
383
|
+
81
|
384
|
+
82
|
385
|
+
83</pre>
|
386
386
|
</td>
|
387
387
|
<td>
|
388
|
-
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line
|
388
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line 80</span>
|
389
389
|
|
390
390
|
<span class='kw'>def</span> <span class='id identifier rubyid_activate_observer'>activate_observer</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span> <span class='op'>=</span> <span class='id identifier rubyid_isimud_client'>isimud_client</span><span class='rparen'>)</span>
|
391
391
|
<span class='id identifier rubyid_create_queue'>create_queue</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span><span class='rparen'>)</span>
|
@@ -426,13 +426,13 @@ corresponding event consumers.</p>
|
|
426
426
|
<pre class="lines">
|
427
427
|
|
428
428
|
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
429
|
+
88
|
430
|
+
89
|
431
|
+
90
|
432
|
+
91</pre>
|
433
433
|
</td>
|
434
434
|
<td>
|
435
|
-
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line
|
435
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line 88</span>
|
436
436
|
|
437
437
|
<span class='kw'>def</span> <span class='id identifier rubyid_deactivate_observer'>deactivate_observer</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span> <span class='op'>=</span> <span class='id identifier rubyid_isimud_client'>isimud_client</span><span class='rparen'>)</span>
|
438
438
|
<span class='id identifier rubyid_delete_queue'>delete_queue</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span><span class='rparen'>)</span>
|
@@ -513,12 +513,12 @@ in your subclass.</p>
|
|
513
513
|
<pre class="lines">
|
514
514
|
|
515
515
|
|
516
|
-
|
517
|
-
|
518
|
-
|
516
|
+
69
|
517
|
+
70
|
518
|
+
71</pre>
|
519
519
|
</td>
|
520
520
|
<td>
|
521
|
-
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line
|
521
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line 69</span>
|
522
522
|
|
523
523
|
<span class='kw'>def</span> <span class='id identifier rubyid_event_queue_name'>event_queue_name</span>
|
524
524
|
<span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier rubyid_event_queue_name'>event_queue_name</span><span class='lparen'>(</span><span class='id identifier rubyid_id'>id</span><span class='rparen'>)</span>
|
@@ -584,12 +584,12 @@ in your subclass.</p>
|
|
584
584
|
<pre class="lines">
|
585
585
|
|
586
586
|
|
587
|
-
|
588
|
-
|
589
|
-
|
587
|
+
73
|
588
|
+
74
|
589
|
+
75</pre>
|
590
590
|
</td>
|
591
591
|
<td>
|
592
|
-
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line
|
592
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line 73</span>
|
593
593
|
|
594
594
|
<span class='kw'>def</span> <span class='id identifier rubyid_isimud_client'>isimud_client</span>
|
595
595
|
<span class='const'>Isimud</span><span class='period'>.</span><span class='id identifier rubyid_client'>client</span>
|
@@ -602,7 +602,7 @@ in your subclass.</p>
|
|
602
602
|
<div class="method_details ">
|
603
603
|
<h3 class="signature " id="observe_events-instance_method">
|
604
604
|
|
605
|
-
- (<tt>Object</tt>) <strong>observe_events</strong>(client)
|
605
|
+
- (<tt>Object</tt>) <strong>observe_events</strong>(client, refresh_bindings = true)
|
606
606
|
|
607
607
|
|
608
608
|
|
@@ -613,13 +613,78 @@ in your subclass.</p>
|
|
613
613
|
|
614
614
|
<p>Create or attach to a queue on the specified exchange. When an event
|
615
615
|
message that matches the observer's routing keys is received, parse the
|
616
|
-
event and call handle_event on same
|
616
|
+
event and call handle_event on same.</p>
|
617
617
|
|
618
618
|
|
619
619
|
</div>
|
620
620
|
</div>
|
621
621
|
<div class="tags">
|
622
|
+
<p class="tag_title">Parameters:</p>
|
623
|
+
<ul class="param">
|
624
|
+
|
625
|
+
<li>
|
626
|
+
|
627
|
+
<span class='name'>client</span>
|
628
|
+
|
629
|
+
|
630
|
+
<span class='type'>(<tt><span class='object_link'><a href="Client.html" title="Isimud::Client (class)">Isimud::Client</a></span></tt>)</span>
|
631
|
+
|
632
|
+
|
633
|
+
|
634
|
+
—
|
635
|
+
<div class='inline'>
|
636
|
+
<p>client instance</p>
|
637
|
+
</div>
|
638
|
+
|
639
|
+
</li>
|
640
|
+
|
641
|
+
<li>
|
642
|
+
|
643
|
+
<span class='name'>refresh_bindings</span>
|
644
|
+
|
645
|
+
|
646
|
+
<span class='type'>(<tt>Boolean</tt>)</span>
|
647
|
+
|
648
|
+
|
649
|
+
<em class="default">(defaults to: <tt>true</tt>)</em>
|
650
|
+
|
651
|
+
|
652
|
+
—
|
653
|
+
<div class='inline'>
|
654
|
+
<p>when set, refresh bindings on queue (true)</p>
|
655
|
+
</div>
|
656
|
+
|
657
|
+
</li>
|
622
658
|
|
659
|
+
</ul>
|
660
|
+
|
661
|
+
<p class="tag_title">Returns:</p>
|
662
|
+
<ul class="return">
|
663
|
+
|
664
|
+
<li>
|
665
|
+
|
666
|
+
|
667
|
+
<span class='type'></span>
|
668
|
+
|
669
|
+
|
670
|
+
|
671
|
+
|
672
|
+
<div class='inline'>
|
673
|
+
<p>queue or consumer object</p>
|
674
|
+
</div>
|
675
|
+
|
676
|
+
</li>
|
677
|
+
|
678
|
+
</ul>
|
679
|
+
|
680
|
+
<p class="tag_title">See Also:</p>
|
681
|
+
<ul class="see">
|
682
|
+
|
683
|
+
<li><span class='object_link'><a href="BunnyClient.html#subscribe-instance_method" title="Isimud::BunnyClient#subscribe (method)">BunnyClient#subscribe</a></span></li>
|
684
|
+
|
685
|
+
<li><span class='object_link'><a href="TestClient.html#subscribe-instance_method" title="Isimud::TestClient#subscribe (method)">TestClient#subscribe</a></span></li>
|
686
|
+
|
687
|
+
</ul>
|
623
688
|
|
624
689
|
</div><table class="source_code">
|
625
690
|
<tr>
|
@@ -627,21 +692,21 @@ event and call handle_event on same. Returns the consumer for the observer</p>
|
|
627
692
|
<pre class="lines">
|
628
693
|
|
629
694
|
|
630
|
-
56
|
631
|
-
57
|
632
|
-
58
|
633
|
-
59
|
634
695
|
60
|
635
696
|
61
|
636
697
|
62
|
637
|
-
63
|
698
|
+
63
|
699
|
+
64
|
700
|
+
65
|
701
|
+
66
|
702
|
+
67</pre>
|
638
703
|
</td>
|
639
704
|
<td>
|
640
|
-
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line
|
705
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line 60</span>
|
641
706
|
|
642
|
-
<span class='kw'>def</span> <span class='id identifier rubyid_observe_events'>observe_events</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span><span class='rparen'>)</span>
|
707
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_observe_events'>observe_events</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span><span class='comma'>,</span> <span class='id identifier rubyid_refresh_bindings'>refresh_bindings</span> <span class='op'>=</span> <span class='kw'>true</span><span class='rparen'>)</span>
|
643
708
|
<span class='kw'>return</span> <span class='kw'>unless</span> <span class='id identifier rubyid_enable_listener?'>enable_listener?</span>
|
644
|
-
<span class='id identifier rubyid_queue'>queue</span> <span class='op'>=</span> <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_kind_of?'>kind_of?</span><span class='lparen'>(</span><span class='const'>Isimud</span><span class='op'>::</span><span class='const'>TestClient</span><span class='rparen'>)</span> <span class='op'>?</span> <span class='id identifier rubyid_create_queue'>create_queue</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span><span class='rparen'>)</span> <span class='op'>:</span> <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_find_queue'>find_queue</span><span class='lparen'>(</span><span class='id identifier rubyid_event_queue_name'>event_queue_name</span><span class='rparen'>)</span>
|
709
|
+
<span class='id identifier rubyid_queue'>queue</span> <span class='op'>=</span> <span class='lparen'>(</span><span class='id identifier rubyid_refresh_bindings'>refresh_bindings</span> <span class='op'>||</span> <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_kind_of?'>kind_of?</span><span class='lparen'>(</span><span class='const'>Isimud</span><span class='op'>::</span><span class='const'>TestClient</span><span class='rparen'>)</span><span class='rparen'>)</span> <span class='op'>?</span> <span class='id identifier rubyid_create_queue'>create_queue</span><span class='lparen'>(</span><span class='id identifier rubyid_client'>client</span><span class='rparen'>)</span> <span class='op'>:</span> <span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_find_queue'>find_queue</span><span class='lparen'>(</span><span class='id identifier rubyid_event_queue_name'>event_queue_name</span><span class='rparen'>)</span>
|
645
710
|
<span class='id identifier rubyid_client'>client</span><span class='period'>.</span><span class='id identifier rubyid_subscribe'>subscribe</span><span class='lparen'>(</span><span class='id identifier rubyid_queue'>queue</span><span class='rparen'>)</span> <span class='kw'>do</span> <span class='op'>|</span><span class='id identifier rubyid_message'>message</span><span class='op'>|</span>
|
646
711
|
<span class='id identifier rubyid_event'>event</span> <span class='op'>=</span> <span class='const'>Event</span><span class='period'>.</span><span class='id identifier rubyid_parse'>parse</span><span class='lparen'>(</span><span class='id identifier rubyid_message'>message</span><span class='rparen'>)</span>
|
647
712
|
<span class='id identifier rubyid_handle_event'>handle_event</span><span class='lparen'>(</span><span class='id identifier rubyid_event'>event</span><span class='rparen'>)</span>
|
@@ -740,9 +805,9 @@ want to specify an alternative exchange.</p>
|
|
740
805
|
</div>
|
741
806
|
|
742
807
|
<div id="footer">
|
743
|
-
Generated on
|
808
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
744
809
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
745
|
-
0.8.7.6 (ruby-2.
|
810
|
+
0.8.7.6 (ruby-2.3.0).
|
746
811
|
</div>
|
747
812
|
|
748
813
|
</body>
|
@@ -191,12 +191,12 @@
|
|
191
191
|
<pre class="lines">
|
192
192
|
|
193
193
|
|
194
|
-
|
195
|
-
|
196
|
-
|
194
|
+
134
|
195
|
+
135
|
196
|
+
136</pre>
|
197
197
|
</td>
|
198
198
|
<td>
|
199
|
-
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line
|
199
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line 134</span>
|
200
200
|
|
201
201
|
<span class='kw'>def</span> <span class='id identifier rubyid_event_queue_name'>event_queue_name</span><span class='lparen'>(</span><span class='id identifier rubyid_id'>id</span><span class='rparen'>)</span>
|
202
202
|
<span class='lbracket'>[</span><span class='id identifier rubyid_queue_prefix'>queue_prefix</span><span class='comma'>,</span> <span class='id identifier rubyid_base_class'>base_class</span><span class='period'>.</span><span class='id identifier rubyid_name'>name</span><span class='period'>.</span><span class='id identifier rubyid_underscore'>underscore</span><span class='comma'>,</span> <span class='id identifier rubyid_id'>id</span><span class='rbracket'>]</span><span class='period'>.</span><span class='id identifier rubyid_join'>join</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>.</span><span class='tstring_end'>'</span></span><span class='rparen'>)</span>
|
@@ -233,12 +233,12 @@ class</p>
|
|
233
233
|
<pre class="lines">
|
234
234
|
|
235
235
|
|
236
|
-
|
237
|
-
|
238
|
-
|
236
|
+
126
|
237
|
+
127
|
238
|
+
128</pre>
|
239
239
|
</td>
|
240
240
|
<td>
|
241
|
-
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line
|
241
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line 126</span>
|
242
242
|
|
243
243
|
<span class='kw'>def</span> <span class='id identifier rubyid_find_active_observers'>find_active_observers</span>
|
244
244
|
<span class='lbracket'>[</span><span class='rbracket'>]</span>
|
@@ -263,12 +263,12 @@ class</p>
|
|
263
263
|
<pre class="lines">
|
264
264
|
|
265
265
|
|
266
|
-
|
267
|
-
|
268
|
-
|
266
|
+
130
|
267
|
+
131
|
268
|
+
132</pre>
|
269
269
|
</td>
|
270
270
|
<td>
|
271
|
-
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line
|
271
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/event_observer.rb', line 130</span>
|
272
272
|
|
273
273
|
<span class='kw'>def</span> <span class='id identifier rubyid_queue_prefix'>queue_prefix</span>
|
274
274
|
<span class='const'>Rails</span><span class='period'>.</span><span class='id identifier rubyid_application'>application</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='period'>.</span><span class='id identifier rubyid_parent_name'>parent_name</span><span class='period'>.</span><span class='id identifier rubyid_downcase'>downcase</span>
|
@@ -283,9 +283,9 @@ class</p>
|
|
283
283
|
</div>
|
284
284
|
|
285
285
|
<div id="footer">
|
286
|
-
Generated on
|
286
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
287
287
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
288
|
-
0.8.7.6 (ruby-2.
|
288
|
+
0.8.7.6 (ruby-2.3.0).
|
289
289
|
</div>
|
290
290
|
|
291
291
|
</body>
|
data/doc/Isimud/Generators.html
CHANGED
@@ -108,9 +108,9 @@
|
|
108
108
|
</div>
|
109
109
|
|
110
110
|
<div id="footer">
|
111
|
-
Generated on
|
111
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
112
112
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
113
|
-
0.8.7.6 (ruby-2.
|
113
|
+
0.8.7.6 (ruby-2.3.0).
|
114
114
|
</div>
|
115
115
|
|
116
116
|
</body>
|
data/doc/Isimud/Logging.html
CHANGED
@@ -221,9 +221,9 @@
|
|
221
221
|
</div>
|
222
222
|
|
223
223
|
<div id="footer">
|
224
|
-
Generated on
|
224
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
225
225
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
226
|
-
0.8.7.6 (ruby-2.
|
226
|
+
0.8.7.6 (ruby-2.3.0).
|
227
227
|
</div>
|
228
228
|
|
229
229
|
</body>
|
@@ -303,9 +303,9 @@
|
|
303
303
|
</div>
|
304
304
|
|
305
305
|
<div id="footer">
|
306
|
-
Generated on
|
306
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
307
307
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
308
|
-
0.8.7.6 (ruby-2.
|
308
|
+
0.8.7.6 (ruby-2.3.0).
|
309
309
|
</div>
|
310
310
|
|
311
311
|
</body>
|
@@ -502,9 +502,9 @@ a return value may be included in the list of attributes.</p>
|
|
502
502
|
</div>
|
503
503
|
|
504
504
|
<div id="footer">
|
505
|
-
Generated on
|
505
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
506
506
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
507
|
-
0.8.7.6 (ruby-2.
|
507
|
+
0.8.7.6 (ruby-2.3.0).
|
508
508
|
</div>
|
509
509
|
|
510
510
|
</body>
|
data/doc/Isimud/Railtie.html
CHANGED
@@ -114,9 +114,9 @@
|
|
114
114
|
</div>
|
115
115
|
|
116
116
|
<div id="footer">
|
117
|
-
Generated on
|
117
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
118
118
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
119
|
-
0.8.7.6 (ruby-2.
|
119
|
+
0.8.7.6 (ruby-2.3.0).
|
120
120
|
</div>
|
121
121
|
|
122
122
|
</body>
|
data/doc/Isimud/TestClient.html
CHANGED
@@ -1002,9 +1002,9 @@ occur.</p>
|
|
1002
1002
|
</div>
|
1003
1003
|
|
1004
1004
|
<div id="footer">
|
1005
|
-
Generated on
|
1005
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
1006
1006
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1007
|
-
0.8.7.6 (ruby-2.
|
1007
|
+
0.8.7.6 (ruby-2.3.0).
|
1008
1008
|
</div>
|
1009
1009
|
|
1010
1010
|
</body>
|
@@ -136,6 +136,35 @@
|
|
136
136
|
<p>Returns the value of attribute bindings.</p>
|
137
137
|
</div></span>
|
138
138
|
|
139
|
+
</li>
|
140
|
+
|
141
|
+
|
142
|
+
<li class="public ">
|
143
|
+
<span class="summary_signature">
|
144
|
+
|
145
|
+
<a href="#client-instance_method" title="#client (instance method)">- (Object) <strong>client</strong> </a>
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
</span>
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
<span class="note title readonly">readonly</span>
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
|
162
|
+
|
163
|
+
|
164
|
+
<span class="summary_desc"><div class='inline'>
|
165
|
+
<p>Returns the value of attribute client.</p>
|
166
|
+
</div></span>
|
167
|
+
|
139
168
|
</li>
|
140
169
|
|
141
170
|
|
@@ -501,6 +530,49 @@
|
|
501
530
|
</div>
|
502
531
|
|
503
532
|
|
533
|
+
<span id=""></span>
|
534
|
+
<div class="method_details ">
|
535
|
+
<h3 class="signature " id="client-instance_method">
|
536
|
+
|
537
|
+
- (<tt>Object</tt>) <strong>client</strong> <span class="extras">(readonly)</span>
|
538
|
+
|
539
|
+
|
540
|
+
|
541
|
+
|
542
|
+
|
543
|
+
</h3><div class="docstring">
|
544
|
+
<div class="discussion">
|
545
|
+
|
546
|
+
<p>Returns the value of attribute client</p>
|
547
|
+
|
548
|
+
|
549
|
+
</div>
|
550
|
+
</div>
|
551
|
+
<div class="tags">
|
552
|
+
|
553
|
+
|
554
|
+
</div><table class="source_code">
|
555
|
+
<tr>
|
556
|
+
<td>
|
557
|
+
<pre class="lines">
|
558
|
+
|
559
|
+
|
560
|
+
14
|
561
|
+
15
|
562
|
+
16</pre>
|
563
|
+
</td>
|
564
|
+
<td>
|
565
|
+
<pre class="code"><span class="info file"># File 'lib/isimud/test_client.rb', line 14</span>
|
566
|
+
|
567
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_client'>client</span>
|
568
|
+
<span class='ivar'>@client</span>
|
569
|
+
<span class='kw'>end</span></pre>
|
570
|
+
</td>
|
571
|
+
</tr>
|
572
|
+
</table>
|
573
|
+
</div>
|
574
|
+
|
575
|
+
|
504
576
|
<span id=""></span>
|
505
577
|
<div class="method_details ">
|
506
578
|
<h3 class="signature " id="name-instance_method">
|
@@ -852,9 +924,9 @@
|
|
852
924
|
</div>
|
853
925
|
|
854
926
|
<div id="footer">
|
855
|
-
Generated on
|
927
|
+
Generated on Tue Aug 23 17:34:23 2016 by
|
856
928
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
857
|
-
0.8.7.6 (ruby-2.
|
929
|
+
0.8.7.6 (ruby-2.3.0).
|
858
930
|
</div>
|
859
931
|
|
860
932
|
</body>
|
data/doc/_index.html
CHANGED
@@ -82,199 +82,6 @@
|
|
82
82
|
<tr>
|
83
83
|
<td valign='top' width="33%">
|
84
84
|
|
85
|
-
|
86
|
-
<ul id="alpha_B" class="alpha">
|
87
|
-
<li class="letter">B</li>
|
88
|
-
<ul>
|
89
|
-
|
90
|
-
<li>
|
91
|
-
<span class='object_link'><a href="Isimud/BunnyClient.html" title="Isimud::BunnyClient (class)">BunnyClient</a></span>
|
92
|
-
|
93
|
-
<small>(Isimud)</small>
|
94
|
-
|
95
|
-
</li>
|
96
|
-
|
97
|
-
</ul>
|
98
|
-
</ul>
|
99
|
-
|
100
|
-
|
101
|
-
<ul id="alpha_C" class="alpha">
|
102
|
-
<li class="letter">C</li>
|
103
|
-
<ul>
|
104
|
-
|
105
|
-
<li>
|
106
|
-
<span class='object_link'><a href="Isimud/EventObserver/ClassMethods.html" title="Isimud::EventObserver::ClassMethods (module)">ClassMethods</a></span>
|
107
|
-
|
108
|
-
<small>(Isimud::EventObserver)</small>
|
109
|
-
|
110
|
-
</li>
|
111
|
-
|
112
|
-
<li>
|
113
|
-
<span class='object_link'><a href="Isimud/ModelWatcher/ClassMethods.html" title="Isimud::ModelWatcher::ClassMethods (module)">ClassMethods</a></span>
|
114
|
-
|
115
|
-
<small>(Isimud::ModelWatcher)</small>
|
116
|
-
|
117
|
-
</li>
|
118
|
-
|
119
|
-
<li>
|
120
|
-
<span class='object_link'><a href="Isimud/Client.html" title="Isimud::Client (class)">Client</a></span>
|
121
|
-
|
122
|
-
<small>(Isimud)</small>
|
123
|
-
|
124
|
-
</li>
|
125
|
-
|
126
|
-
<li>
|
127
|
-
<span class='object_link'><a href="Isimud/Generators/ConfigGenerator.html" title="Isimud::Generators::ConfigGenerator (class)">ConfigGenerator</a></span>
|
128
|
-
|
129
|
-
<small>(Isimud::Generators)</small>
|
130
|
-
|
131
|
-
</li>
|
132
|
-
|
133
|
-
</ul>
|
134
|
-
</ul>
|
135
|
-
|
136
|
-
|
137
|
-
<ul id="alpha_E" class="alpha">
|
138
|
-
<li class="letter">E</li>
|
139
|
-
<ul>
|
140
|
-
|
141
|
-
<li>
|
142
|
-
<span class='object_link'><a href="Isimud/Event.html" title="Isimud::Event (class)">Event</a></span>
|
143
|
-
|
144
|
-
<small>(Isimud)</small>
|
145
|
-
|
146
|
-
</li>
|
147
|
-
|
148
|
-
<li>
|
149
|
-
<span class='object_link'><a href="Isimud/EventListener.html" title="Isimud::EventListener (class)">EventListener</a></span>
|
150
|
-
|
151
|
-
<small>(Isimud)</small>
|
152
|
-
|
153
|
-
</li>
|
154
|
-
|
155
|
-
<li>
|
156
|
-
<span class='object_link'><a href="Isimud/EventObserver.html" title="Isimud::EventObserver (module)">EventObserver</a></span>
|
157
|
-
|
158
|
-
<small>(Isimud)</small>
|
159
|
-
|
160
|
-
</li>
|
161
|
-
|
162
|
-
</ul>
|
163
|
-
</ul>
|
164
|
-
|
165
|
-
|
166
|
-
<ul id="alpha_G" class="alpha">
|
167
|
-
<li class="letter">G</li>
|
168
|
-
<ul>
|
169
|
-
|
170
|
-
<li>
|
171
|
-
<span class='object_link'><a href="Isimud/Generators.html" title="Isimud::Generators (module)">Generators</a></span>
|
172
|
-
|
173
|
-
<small>(Isimud)</small>
|
174
|
-
|
175
|
-
</li>
|
176
|
-
|
177
|
-
</ul>
|
178
|
-
</ul>
|
179
|
-
|
180
|
-
|
181
|
-
<ul id="alpha_I" class="alpha">
|
182
|
-
<li class="letter">I</li>
|
183
|
-
<ul>
|
184
|
-
|
185
|
-
<li>
|
186
|
-
<span class='object_link'><a href="Isimud/Generators/InitializerGenerator.html" title="Isimud::Generators::InitializerGenerator (class)">InitializerGenerator</a></span>
|
187
|
-
|
188
|
-
<small>(Isimud::Generators)</small>
|
189
|
-
|
190
|
-
</li>
|
191
|
-
|
192
|
-
<li>
|
193
|
-
<span class='object_link'><a href="Isimud.html" title="Isimud (module)">Isimud</a></span>
|
194
|
-
|
195
|
-
</li>
|
196
|
-
|
197
|
-
</ul>
|
198
|
-
</ul>
|
199
|
-
|
200
|
-
|
201
|
-
<ul id="alpha_L" class="alpha">
|
202
|
-
<li class="letter">L</li>
|
203
|
-
<ul>
|
204
|
-
|
205
|
-
<li>
|
206
|
-
<span class='object_link'><a href="Isimud/Logging.html" title="Isimud::Logging (module)">Logging</a></span>
|
207
|
-
|
208
|
-
<small>(Isimud)</small>
|
209
|
-
|
210
|
-
</li>
|
211
|
-
|
212
|
-
</ul>
|
213
|
-
</ul>
|
214
|
-
|
215
|
-
|
216
|
-
<ul id="alpha_M" class="alpha">
|
217
|
-
<li class="letter">M</li>
|
218
|
-
<ul>
|
219
|
-
|
220
|
-
<li>
|
221
|
-
<span class='object_link'><a href="Isimud/ModelWatcher.html" title="Isimud::ModelWatcher (module)">ModelWatcher</a></span>
|
222
|
-
|
223
|
-
<small>(Isimud)</small>
|
224
|
-
|
225
|
-
</li>
|
226
|
-
|
227
|
-
</ul>
|
228
|
-
</ul>
|
229
|
-
|
230
|
-
|
231
|
-
</td><td valign='top' width="33%">
|
232
|
-
|
233
|
-
|
234
|
-
<ul id="alpha_Q" class="alpha">
|
235
|
-
<li class="letter">Q</li>
|
236
|
-
<ul>
|
237
|
-
|
238
|
-
<li>
|
239
|
-
<span class='object_link'><a href="Isimud/TestClient/Queue.html" title="Isimud::TestClient::Queue (class)">Queue</a></span>
|
240
|
-
|
241
|
-
<small>(Isimud::TestClient)</small>
|
242
|
-
|
243
|
-
</li>
|
244
|
-
|
245
|
-
</ul>
|
246
|
-
</ul>
|
247
|
-
|
248
|
-
|
249
|
-
<ul id="alpha_R" class="alpha">
|
250
|
-
<li class="letter">R</li>
|
251
|
-
<ul>
|
252
|
-
|
253
|
-
<li>
|
254
|
-
<span class='object_link'><a href="Isimud/Railtie.html" title="Isimud::Railtie (class)">Railtie</a></span>
|
255
|
-
|
256
|
-
<small>(Isimud)</small>
|
257
|
-
|
258
|
-
</li>
|
259
|
-
|
260
|
-
</ul>
|
261
|
-
</ul>
|
262
|
-
|
263
|
-
|
264
|
-
<ul id="alpha_T" class="alpha">
|
265
|
-
<li class="letter">T</li>
|
266
|
-
<ul>
|
267
|
-
|
268
|
-
<li>
|
269
|
-
<span class='object_link'><a href="Isimud/TestClient.html" title="Isimud::TestClient (class)">TestClient</a></span>
|
270
|
-
|
271
|
-
<small>(Isimud)</small>
|
272
|
-
|
273
|
-
</li>
|
274
|
-
|
275
|
-
</ul>
|
276
|
-
</ul>
|
277
|
-
|
278
85
|
</td>
|
279
86
|
</tr>
|
280
87
|
</table>
|
@@ -284,9 +91,9 @@
|
|
284
91
|
</div>
|
285
92
|
|
286
93
|
<div id="footer">
|
287
|
-
Generated on
|
94
|
+
Generated on Wed Aug 24 18:59:44 2016 by
|
288
95
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
289
|
-
0.8.7.6 (ruby-2.
|
96
|
+
0.8.7.6 (ruby-2.3.0).
|
290
97
|
</div>
|
291
98
|
|
292
99
|
</body>
|