primer 0.1.0 → 0.2.0

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 (72) hide show
  1. data/History.txt +17 -0
  2. data/README.rdoc +74 -35
  3. data/example/README.rdoc +33 -23
  4. data/example/application.rb +2 -2
  5. data/example/console.rb +133 -0
  6. data/example/db/blog.sqlite3 +0 -0
  7. data/example/{models → db}/connection.rb +0 -0
  8. data/example/environment.rb +17 -4
  9. data/example/models/comment.rb +5 -0
  10. data/example/models/post.rb +5 -0
  11. data/example/script/setup_database.rb +8 -2
  12. data/example/views/comments.erb +6 -0
  13. data/example/views/layout.erb +1 -1
  14. data/example/views/show.erb +5 -1
  15. data/lib/primer/bus/amqp.rb +7 -5
  16. data/lib/primer/bus/amqp.rbc +1045 -0
  17. data/lib/primer/bus/memory.rbc +344 -0
  18. data/lib/primer/bus.rb +3 -2
  19. data/lib/primer/bus.rbc +872 -0
  20. data/lib/primer/cache/memory.rbc +1443 -0
  21. data/lib/primer/cache/redis.rb +2 -2
  22. data/lib/primer/cache/redis.rbc +1643 -0
  23. data/lib/primer/cache.rb +2 -16
  24. data/lib/primer/cache.rbc +1502 -0
  25. data/lib/primer/enabler.rbc +414 -0
  26. data/lib/primer/helpers.rbc +1438 -0
  27. data/lib/primer/lazyness.rb +63 -0
  28. data/lib/primer/lazyness.rbc +1442 -0
  29. data/lib/primer/real_time.rbc +1999 -0
  30. data/lib/primer/route_set.rb +1 -0
  31. data/lib/primer/route_set.rbc +1475 -0
  32. data/lib/primer/watcher/active_record_macros.rb +13 -3
  33. data/lib/primer/watcher/active_record_macros.rbc +1796 -0
  34. data/lib/primer/watcher/macros.rb +11 -14
  35. data/lib/primer/watcher/macros.rbc +1628 -0
  36. data/lib/primer/watcher.rb +2 -7
  37. data/lib/primer/watcher.rbc +1416 -0
  38. data/lib/primer/worker/active_record_agent.rb +30 -33
  39. data/lib/primer/worker/active_record_agent.rbc +2840 -0
  40. data/lib/primer/worker/changes_agent.rb +20 -0
  41. data/lib/primer/worker/changes_agent.rbc +578 -0
  42. data/lib/primer/worker.rb +20 -3
  43. data/lib/primer/worker.rbc +1254 -0
  44. data/lib/primer.rb +10 -2
  45. data/lib/primer.rbc +944 -0
  46. data/spec/db/test.sqlite3 +0 -0
  47. data/spec/models/artist.rb +3 -2
  48. data/spec/models/artist.rbc +288 -0
  49. data/spec/models/blog_post.rb +3 -1
  50. data/spec/models/blog_post.rbc +181 -0
  51. data/spec/models/calendar.rbc +209 -0
  52. data/spec/models/concert.rbc +211 -0
  53. data/spec/models/performance.rbc +177 -0
  54. data/spec/models/person.rb +1 -0
  55. data/spec/models/person.rbc +306 -0
  56. data/spec/models/watchable.rbc +363 -0
  57. data/spec/primer/bus_spec.rbc +940 -0
  58. data/spec/primer/cache_spec.rb +3 -3
  59. data/spec/primer/cache_spec.rbc +8535 -0
  60. data/spec/primer/helpers/erb_spec.rb +14 -14
  61. data/spec/primer/helpers/erb_spec.rbc +2485 -0
  62. data/spec/primer/lazyness_spec.rb +61 -0
  63. data/spec/primer/lazyness_spec.rbc +1408 -0
  64. data/spec/primer/watcher/active_record_spec.rb +15 -15
  65. data/spec/primer/watcher/active_record_spec.rbc +5202 -0
  66. data/spec/primer/watcher_spec.rbc +2645 -0
  67. data/spec/schema.rbc +775 -0
  68. data/spec/spec_helper.rb +3 -0
  69. data/spec/spec_helper.rbc +1193 -0
  70. data/spec/templates/page.erb +0 -1
  71. metadata +77 -70
  72. data/example/models/blog_post.rb +0 -4
@@ -0,0 +1,1999 @@
1
+ !RBIX
2
+ 10310238139619683799
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 6
54
+ Primer
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 6
67
+ Primer
68
+ i
69
+ 33
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 45
76
+ 1
77
+ 2
78
+ 43
79
+ 3
80
+ 65
81
+ 49
82
+ 4
83
+ 3
84
+ 13
85
+ 99
86
+ 12
87
+ 7
88
+ 5
89
+ 12
90
+ 7
91
+ 6
92
+ 12
93
+ 65
94
+ 12
95
+ 49
96
+ 7
97
+ 4
98
+ 15
99
+ 49
100
+ 5
101
+ 0
102
+ 11
103
+ I
104
+ 6
105
+ I
106
+ 0
107
+ I
108
+ 0
109
+ I
110
+ 0
111
+ n
112
+ p
113
+ 8
114
+ x
115
+ 8
116
+ RealTime
117
+ x
118
+ 4
119
+ Faye
120
+ n
121
+ x
122
+ 11
123
+ RackAdapter
124
+ x
125
+ 10
126
+ open_class
127
+ x
128
+ 14
129
+ __class_init__
130
+ M
131
+ 1
132
+ n
133
+ n
134
+ x
135
+ 8
136
+ RealTime
137
+ i
138
+ 201
139
+ 5
140
+ 66
141
+ 65
142
+ 7
143
+ 0
144
+ 44
145
+ 43
146
+ 1
147
+ 80
148
+ 49
149
+ 2
150
+ 1
151
+ 13
152
+ 7
153
+ 3
154
+ 7
155
+ 4
156
+ 64
157
+ 49
158
+ 5
159
+ 2
160
+ 15
161
+ 13
162
+ 7
163
+ 6
164
+ 4
165
+ 25
166
+ 49
167
+ 5
168
+ 2
169
+ 15
170
+ 49
171
+ 7
172
+ 2
173
+ 15
174
+ 65
175
+ 7
176
+ 8
177
+ 7
178
+ 9
179
+ 64
180
+ 49
181
+ 7
182
+ 2
183
+ 15
184
+ 65
185
+ 7
186
+ 10
187
+ 44
188
+ 43
189
+ 1
190
+ 79
191
+ 49
192
+ 2
193
+ 1
194
+ 13
195
+ 7
196
+ 11
197
+ 64
198
+ 7
199
+ 12
200
+ 64
201
+ 49
202
+ 5
203
+ 2
204
+ 15
205
+ 49
206
+ 7
207
+ 2
208
+ 15
209
+ 65
210
+ 7
211
+ 13
212
+ 45
213
+ 14
214
+ 15
215
+ 45
216
+ 16
217
+ 17
218
+ 7
219
+ 18
220
+ 64
221
+ 81
222
+ 19
223
+ 49
224
+ 20
225
+ 1
226
+ 49
227
+ 7
228
+ 2
229
+ 15
230
+ 99
231
+ 7
232
+ 21
233
+ 1
234
+ 65
235
+ 49
236
+ 22
237
+ 3
238
+ 13
239
+ 99
240
+ 12
241
+ 7
242
+ 23
243
+ 12
244
+ 7
245
+ 24
246
+ 12
247
+ 65
248
+ 12
249
+ 49
250
+ 25
251
+ 4
252
+ 15
253
+ 49
254
+ 23
255
+ 0
256
+ 15
257
+ 99
258
+ 7
259
+ 26
260
+ 1
261
+ 65
262
+ 49
263
+ 22
264
+ 3
265
+ 13
266
+ 99
267
+ 12
268
+ 7
269
+ 23
270
+ 12
271
+ 7
272
+ 27
273
+ 12
274
+ 65
275
+ 12
276
+ 49
277
+ 25
278
+ 4
279
+ 15
280
+ 49
281
+ 23
282
+ 0
283
+ 15
284
+ 99
285
+ 7
286
+ 28
287
+ 7
288
+ 29
289
+ 65
290
+ 67
291
+ 49
292
+ 30
293
+ 0
294
+ 49
295
+ 31
296
+ 4
297
+ 15
298
+ 99
299
+ 7
300
+ 32
301
+ 7
302
+ 33
303
+ 65
304
+ 67
305
+ 49
306
+ 30
307
+ 0
308
+ 49
309
+ 31
310
+ 4
311
+ 15
312
+ 5
313
+ 99
314
+ 43
315
+ 34
316
+ 12
317
+ 49
318
+ 35
319
+ 1
320
+ 13
321
+ 99
322
+ 12
323
+ 7
324
+ 36
325
+ 12
326
+ 7
327
+ 37
328
+ 12
329
+ 65
330
+ 12
331
+ 49
332
+ 25
333
+ 4
334
+ 15
335
+ 54
336
+ 50
337
+ 36
338
+ 0
339
+ 11
340
+ I
341
+ 6
342
+ I
343
+ 0
344
+ I
345
+ 0
346
+ I
347
+ 0
348
+ n
349
+ p
350
+ 38
351
+ x
352
+ 13
353
+ BAYEUX_CONFIG
354
+ x
355
+ 4
356
+ Hash
357
+ x
358
+ 16
359
+ new_from_literal
360
+ x
361
+ 5
362
+ mount
363
+ s
364
+ 14
365
+ /primer/bayeux
366
+ x
367
+ 3
368
+ []=
369
+ x
370
+ 7
371
+ timeout
372
+ x
373
+ 9
374
+ const_set
375
+ x
376
+ 11
377
+ SCRIPT_PATH
378
+ s
379
+ 10
380
+ /primer.js
381
+ x
382
+ 11
383
+ TYPE_SCRIPT
384
+ s
385
+ 12
386
+ Content-Type
387
+ s
388
+ 15
389
+ text/javascript
390
+ x
391
+ 13
392
+ SCRIPT_SOURCE
393
+ x
394
+ 4
395
+ File
396
+ n
397
+ x
398
+ 4
399
+ ROOT
400
+ n
401
+ s
402
+ 21
403
+ /javascript/primer.js
404
+ x
405
+ 1
406
+ +
407
+ x
408
+ 4
409
+ read
410
+ x
411
+ 10
412
+ ServerAuth
413
+ x
414
+ 10
415
+ open_class
416
+ x
417
+ 14
418
+ __class_init__
419
+ M
420
+ 1
421
+ n
422
+ n
423
+ x
424
+ 10
425
+ ServerAuth
426
+ i
427
+ 16
428
+ 5
429
+ 66
430
+ 99
431
+ 7
432
+ 0
433
+ 7
434
+ 1
435
+ 65
436
+ 67
437
+ 49
438
+ 2
439
+ 0
440
+ 49
441
+ 3
442
+ 4
443
+ 11
444
+ I
445
+ 5
446
+ I
447
+ 0
448
+ I
449
+ 0
450
+ I
451
+ 0
452
+ n
453
+ p
454
+ 4
455
+ x
456
+ 8
457
+ incoming
458
+ M
459
+ 1
460
+ n
461
+ n
462
+ x
463
+ 8
464
+ incoming
465
+ i
466
+ 130
467
+ 20
468
+ 0
469
+ 7
470
+ 0
471
+ 64
472
+ 49
473
+ 1
474
+ 1
475
+ 19
476
+ 2
477
+ 15
478
+ 45
479
+ 2
480
+ 3
481
+ 43
482
+ 4
483
+ 20
484
+ 2
485
+ 49
486
+ 5
487
+ 1
488
+ 9
489
+ 33
490
+ 20
491
+ 1
492
+ 20
493
+ 0
494
+ 49
495
+ 6
496
+ 1
497
+ 11
498
+ 8
499
+ 34
500
+ 1
501
+ 15
502
+ 20
503
+ 0
504
+ 7
505
+ 7
506
+ 64
507
+ 49
508
+ 1
509
+ 1
510
+ 13
511
+ 9
512
+ 61
513
+ 15
514
+ 20
515
+ 0
516
+ 7
517
+ 7
518
+ 64
519
+ 49
520
+ 1
521
+ 1
522
+ 7
523
+ 8
524
+ 64
525
+ 49
526
+ 1
527
+ 1
528
+ 19
529
+ 3
530
+ 15
531
+ 20
532
+ 3
533
+ 45
534
+ 9
535
+ 10
536
+ 49
537
+ 11
538
+ 0
539
+ 83
540
+ 12
541
+ 9
542
+ 79
543
+ 1
544
+ 8
545
+ 99
546
+ 20
547
+ 0
548
+ 7
549
+ 13
550
+ 64
551
+ 45
552
+ 2
553
+ 14
554
+ 43
555
+ 15
556
+ 49
557
+ 16
558
+ 0
559
+ 13
560
+ 18
561
+ 3
562
+ 49
563
+ 17
564
+ 2
565
+ 15
566
+ 15
567
+ 20
568
+ 3
569
+ 9
570
+ 120
571
+ 20
572
+ 0
573
+ 7
574
+ 7
575
+ 64
576
+ 49
577
+ 1
578
+ 1
579
+ 7
580
+ 8
581
+ 64
582
+ 49
583
+ 18
584
+ 1
585
+ 8
586
+ 121
587
+ 1
588
+ 15
589
+ 20
590
+ 1
591
+ 20
592
+ 0
593
+ 49
594
+ 6
595
+ 1
596
+ 11
597
+ I
598
+ 8
599
+ I
600
+ 4
601
+ I
602
+ 2
603
+ I
604
+ 2
605
+ n
606
+ p
607
+ 19
608
+ s
609
+ 7
610
+ channel
611
+ x
612
+ 2
613
+ []
614
+ x
615
+ 4
616
+ Faye
617
+ n
618
+ x
619
+ 7
620
+ Channel
621
+ x
622
+ 5
623
+ meta?
624
+ x
625
+ 4
626
+ call
627
+ s
628
+ 3
629
+ ext
630
+ s
631
+ 8
632
+ password
633
+ x
634
+ 8
635
+ RealTime
636
+ n
637
+ x
638
+ 8
639
+ password
640
+ x
641
+ 2
642
+ ==
643
+ s
644
+ 5
645
+ error
646
+ n
647
+ x
648
+ 5
649
+ Error
650
+ x
651
+ 12
652
+ ext_mismatch
653
+ x
654
+ 3
655
+ []=
656
+ x
657
+ 6
658
+ delete
659
+ p
660
+ 17
661
+ I
662
+ -1
663
+ I
664
+ a
665
+ I
666
+ 0
667
+ I
668
+ b
669
+ I
670
+ b
671
+ I
672
+ c
673
+ I
674
+ 23
675
+ I
676
+ e
677
+ I
678
+ 40
679
+ I
680
+ f
681
+ I
682
+ 4f
683
+ I
684
+ 10
685
+ I
686
+ 64
687
+ I
688
+ 13
689
+ I
690
+ 7a
691
+ I
692
+ 14
693
+ I
694
+ 82
695
+ x
696
+ 54
697
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
698
+ p
699
+ 4
700
+ x
701
+ 7
702
+ message
703
+ x
704
+ 8
705
+ callback
706
+ x
707
+ 7
708
+ channel
709
+ x
710
+ 8
711
+ password
712
+ x
713
+ 17
714
+ method_visibility
715
+ x
716
+ 15
717
+ add_defn_method
718
+ p
719
+ 3
720
+ I
721
+ 2
722
+ I
723
+ a
724
+ I
725
+ 10
726
+ x
727
+ 54
728
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
729
+ p
730
+ 0
731
+ x
732
+ 13
733
+ attach_method
734
+ x
735
+ 10
736
+ ClientAuth
737
+ M
738
+ 1
739
+ n
740
+ n
741
+ x
742
+ 10
743
+ ClientAuth
744
+ i
745
+ 16
746
+ 5
747
+ 66
748
+ 99
749
+ 7
750
+ 0
751
+ 7
752
+ 1
753
+ 65
754
+ 67
755
+ 49
756
+ 2
757
+ 0
758
+ 49
759
+ 3
760
+ 4
761
+ 11
762
+ I
763
+ 5
764
+ I
765
+ 0
766
+ I
767
+ 0
768
+ I
769
+ 0
770
+ n
771
+ p
772
+ 4
773
+ x
774
+ 8
775
+ outgoing
776
+ M
777
+ 1
778
+ n
779
+ n
780
+ x
781
+ 8
782
+ outgoing
783
+ i
784
+ 103
785
+ 20
786
+ 0
787
+ 7
788
+ 0
789
+ 64
790
+ 49
791
+ 1
792
+ 1
793
+ 19
794
+ 2
795
+ 15
796
+ 45
797
+ 2
798
+ 3
799
+ 43
800
+ 4
801
+ 20
802
+ 2
803
+ 49
804
+ 5
805
+ 1
806
+ 9
807
+ 33
808
+ 20
809
+ 1
810
+ 20
811
+ 0
812
+ 49
813
+ 6
814
+ 1
815
+ 11
816
+ 8
817
+ 34
818
+ 1
819
+ 15
820
+ 20
821
+ 0
822
+ 7
823
+ 7
824
+ 64
825
+ 14
826
+ 2
827
+ 49
828
+ 1
829
+ 1
830
+ 13
831
+ 10
832
+ 65
833
+ 15
834
+ 44
835
+ 43
836
+ 8
837
+ 78
838
+ 49
839
+ 9
840
+ 1
841
+ 13
842
+ 18
843
+ 3
844
+ 49
845
+ 10
846
+ 2
847
+ 15
848
+ 8
849
+ 69
850
+ 18
851
+ 2
852
+ 16
853
+ 2
854
+ 15
855
+ 20
856
+ 0
857
+ 7
858
+ 7
859
+ 64
860
+ 49
861
+ 1
862
+ 1
863
+ 7
864
+ 11
865
+ 64
866
+ 45
867
+ 12
868
+ 13
869
+ 49
870
+ 14
871
+ 0
872
+ 13
873
+ 18
874
+ 3
875
+ 49
876
+ 10
877
+ 2
878
+ 15
879
+ 15
880
+ 20
881
+ 1
882
+ 20
883
+ 0
884
+ 49
885
+ 6
886
+ 1
887
+ 11
888
+ I
889
+ 7
890
+ I
891
+ 3
892
+ I
893
+ 2
894
+ I
895
+ 2
896
+ n
897
+ p
898
+ 15
899
+ s
900
+ 7
901
+ channel
902
+ x
903
+ 2
904
+ []
905
+ x
906
+ 4
907
+ Faye
908
+ n
909
+ x
910
+ 7
911
+ Channel
912
+ x
913
+ 5
914
+ meta?
915
+ x
916
+ 4
917
+ call
918
+ s
919
+ 3
920
+ ext
921
+ x
922
+ 4
923
+ Hash
924
+ x
925
+ 16
926
+ new_from_literal
927
+ x
928
+ 3
929
+ []=
930
+ s
931
+ 8
932
+ password
933
+ x
934
+ 8
935
+ RealTime
936
+ n
937
+ x
938
+ 8
939
+ password
940
+ p
941
+ 13
942
+ I
943
+ -1
944
+ I
945
+ 19
946
+ I
947
+ 0
948
+ I
949
+ 1a
950
+ I
951
+ b
952
+ I
953
+ 1b
954
+ I
955
+ 23
956
+ I
957
+ 1d
958
+ I
959
+ 46
960
+ I
961
+ 1e
962
+ I
963
+ 5f
964
+ I
965
+ 20
966
+ I
967
+ 67
968
+ x
969
+ 54
970
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
971
+ p
972
+ 3
973
+ x
974
+ 7
975
+ message
976
+ x
977
+ 8
978
+ callback
979
+ x
980
+ 7
981
+ channel
982
+ x
983
+ 17
984
+ method_visibility
985
+ x
986
+ 15
987
+ add_defn_method
988
+ p
989
+ 3
990
+ I
991
+ 2
992
+ I
993
+ 19
994
+ I
995
+ 10
996
+ x
997
+ 54
998
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
999
+ p
1000
+ 0
1001
+ x
1002
+ 10
1003
+ initialize
1004
+ M
1005
+ 1
1006
+ n
1007
+ n
1008
+ x
1009
+ 10
1010
+ initialize
1011
+ i
1012
+ 40
1013
+ 20
1014
+ 0
1015
+ 45
1016
+ 0
1017
+ 1
1018
+ 54
1019
+ 52
1020
+ 2
1021
+ 2
1022
+ 15
1023
+ 5
1024
+ 45
1025
+ 3
1026
+ 4
1027
+ 13
1028
+ 71
1029
+ 5
1030
+ 47
1031
+ 9
1032
+ 32
1033
+ 47
1034
+ 49
1035
+ 6
1036
+ 0
1037
+ 13
1038
+ 47
1039
+ 49
1040
+ 2
1041
+ 0
1042
+ 15
1043
+ 8
1044
+ 35
1045
+ 49
1046
+ 5
1047
+ 0
1048
+ 47
1049
+ 49
1050
+ 7
1051
+ 1
1052
+ 11
1053
+ I
1054
+ 4
1055
+ I
1056
+ 1
1057
+ I
1058
+ 1
1059
+ I
1060
+ 1
1061
+ n
1062
+ p
1063
+ 8
1064
+ x
1065
+ 13
1066
+ BAYEUX_CONFIG
1067
+ n
1068
+ x
1069
+ 10
1070
+ initialize
1071
+ x
1072
+ 10
1073
+ ServerAuth
1074
+ n
1075
+ x
1076
+ 3
1077
+ new
1078
+ x
1079
+ 8
1080
+ allocate
1081
+ x
1082
+ 13
1083
+ add_extension
1084
+ p
1085
+ 7
1086
+ I
1087
+ -1
1088
+ I
1089
+ 24
1090
+ I
1091
+ 0
1092
+ I
1093
+ 25
1094
+ I
1095
+ a
1096
+ I
1097
+ 26
1098
+ I
1099
+ 28
1100
+ x
1101
+ 54
1102
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1103
+ p
1104
+ 1
1105
+ x
1106
+ 3
1107
+ app
1108
+ x
1109
+ 17
1110
+ method_visibility
1111
+ x
1112
+ 15
1113
+ add_defn_method
1114
+ x
1115
+ 4
1116
+ call
1117
+ M
1118
+ 1
1119
+ n
1120
+ n
1121
+ x
1122
+ 4
1123
+ call
1124
+ i
1125
+ 66
1126
+ 45
1127
+ 0
1128
+ 1
1129
+ 43
1130
+ 2
1131
+ 13
1132
+ 71
1133
+ 3
1134
+ 47
1135
+ 9
1136
+ 25
1137
+ 47
1138
+ 49
1139
+ 4
1140
+ 0
1141
+ 13
1142
+ 20
1143
+ 0
1144
+ 47
1145
+ 49
1146
+ 5
1147
+ 1
1148
+ 15
1149
+ 8
1150
+ 30
1151
+ 20
1152
+ 0
1153
+ 49
1154
+ 3
1155
+ 1
1156
+ 19
1157
+ 1
1158
+ 15
1159
+ 20
1160
+ 1
1161
+ 49
1162
+ 6
1163
+ 0
1164
+ 45
1165
+ 7
1166
+ 8
1167
+ 83
1168
+ 9
1169
+ 9
1170
+ 48
1171
+ 1
1172
+ 8
1173
+ 52
1174
+ 54
1175
+ 89
1176
+ 10
1177
+ 11
1178
+ 15
1179
+ 4
1180
+ 200
1181
+ 45
1182
+ 11
1183
+ 12
1184
+ 45
1185
+ 13
1186
+ 14
1187
+ 35
1188
+ 1
1189
+ 35
1190
+ 3
1191
+ 11
1192
+ I
1193
+ 5
1194
+ I
1195
+ 2
1196
+ I
1197
+ 1
1198
+ I
1199
+ 1
1200
+ n
1201
+ p
1202
+ 15
1203
+ x
1204
+ 4
1205
+ Rack
1206
+ n
1207
+ x
1208
+ 7
1209
+ Request
1210
+ x
1211
+ 3
1212
+ new
1213
+ x
1214
+ 8
1215
+ allocate
1216
+ x
1217
+ 10
1218
+ initialize
1219
+ x
1220
+ 9
1221
+ path_info
1222
+ x
1223
+ 11
1224
+ SCRIPT_PATH
1225
+ n
1226
+ x
1227
+ 2
1228
+ ==
1229
+ x
1230
+ 4
1231
+ call
1232
+ x
1233
+ 11
1234
+ TYPE_SCRIPT
1235
+ n
1236
+ x
1237
+ 13
1238
+ SCRIPT_SOURCE
1239
+ n
1240
+ p
1241
+ 9
1242
+ I
1243
+ -1
1244
+ I
1245
+ 29
1246
+ I
1247
+ 0
1248
+ I
1249
+ 2a
1250
+ I
1251
+ 21
1252
+ I
1253
+ 2b
1254
+ I
1255
+ 35
1256
+ I
1257
+ 2c
1258
+ I
1259
+ 42
1260
+ x
1261
+ 54
1262
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1263
+ p
1264
+ 2
1265
+ x
1266
+ 3
1267
+ env
1268
+ x
1269
+ 7
1270
+ request
1271
+ x
1272
+ 4
1273
+ Type
1274
+ x
1275
+ 22
1276
+ object_singleton_class
1277
+ x
1278
+ 18
1279
+ __metaclass_init__
1280
+ M
1281
+ 1
1282
+ n
1283
+ n
1284
+ x
1285
+ 18
1286
+ __metaclass_init__
1287
+ i
1288
+ 58
1289
+ 5
1290
+ 66
1291
+ 5
1292
+ 7
1293
+ 0
1294
+ 7
1295
+ 1
1296
+ 47
1297
+ 49
1298
+ 2
1299
+ 2
1300
+ 15
1301
+ 99
1302
+ 7
1303
+ 3
1304
+ 7
1305
+ 4
1306
+ 65
1307
+ 67
1308
+ 49
1309
+ 5
1310
+ 0
1311
+ 49
1312
+ 6
1313
+ 4
1314
+ 15
1315
+ 99
1316
+ 7
1317
+ 7
1318
+ 7
1319
+ 8
1320
+ 65
1321
+ 67
1322
+ 49
1323
+ 5
1324
+ 0
1325
+ 49
1326
+ 6
1327
+ 4
1328
+ 15
1329
+ 5
1330
+ 48
1331
+ 9
1332
+ 15
1333
+ 99
1334
+ 7
1335
+ 10
1336
+ 7
1337
+ 11
1338
+ 65
1339
+ 67
1340
+ 49
1341
+ 5
1342
+ 0
1343
+ 49
1344
+ 6
1345
+ 4
1346
+ 11
1347
+ I
1348
+ 5
1349
+ I
1350
+ 0
1351
+ I
1352
+ 0
1353
+ I
1354
+ 0
1355
+ n
1356
+ p
1357
+ 12
1358
+ x
1359
+ 13
1360
+ bayeux_server
1361
+ x
1362
+ 8
1363
+ password
1364
+ x
1365
+ 13
1366
+ attr_accessor
1367
+ x
1368
+ 6
1369
+ dom_id
1370
+ M
1371
+ 1
1372
+ n
1373
+ n
1374
+ x
1375
+ 6
1376
+ dom_id
1377
+ i
1378
+ 39
1379
+ 7
1380
+ 0
1381
+ 7
1382
+ 1
1383
+ 64
1384
+ 20
1385
+ 0
1386
+ 81
1387
+ 2
1388
+ 7
1389
+ 3
1390
+ 13
1391
+ 70
1392
+ 9
1393
+ 27
1394
+ 15
1395
+ 44
1396
+ 43
1397
+ 4
1398
+ 7
1399
+ 5
1400
+ 79
1401
+ 49
1402
+ 6
1403
+ 2
1404
+ 6
1405
+ 3
1406
+ 7
1407
+ 1
1408
+ 64
1409
+ 49
1410
+ 7
1411
+ 2
1412
+ 47
1413
+ 101
1414
+ 8
1415
+ 63
1416
+ 2
1417
+ 11
1418
+ I
1419
+ 6
1420
+ I
1421
+ 1
1422
+ I
1423
+ 1
1424
+ I
1425
+ 1
1426
+ n
1427
+ p
1428
+ 9
1429
+ s
1430
+ 6
1431
+ primer
1432
+ s
1433
+ 1
1434
+ -
1435
+ x
1436
+ 1
1437
+ +
1438
+ n
1439
+ x
1440
+ 6
1441
+ Regexp
1442
+ s
1443
+ 10
1444
+ [^a-z0-9]+
1445
+ x
1446
+ 3
1447
+ new
1448
+ x
1449
+ 4
1450
+ gsub
1451
+ x
1452
+ 4
1453
+ to_s
1454
+ p
1455
+ 5
1456
+ I
1457
+ -1
1458
+ I
1459
+ 32
1460
+ I
1461
+ 0
1462
+ I
1463
+ 33
1464
+ I
1465
+ 27
1466
+ x
1467
+ 54
1468
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1469
+ p
1470
+ 1
1471
+ x
1472
+ 9
1473
+ cache_key
1474
+ x
1475
+ 17
1476
+ method_visibility
1477
+ x
1478
+ 15
1479
+ add_defn_method
1480
+ x
1481
+ 7
1482
+ publish
1483
+ M
1484
+ 1
1485
+ n
1486
+ n
1487
+ x
1488
+ 7
1489
+ publish
1490
+ i
1491
+ 53
1492
+ 45
1493
+ 0
1494
+ 1
1495
+ 49
1496
+ 2
1497
+ 0
1498
+ 9
1499
+ 11
1500
+ 1
1501
+ 8
1502
+ 13
1503
+ 1
1504
+ 11
1505
+ 15
1506
+ 5
1507
+ 48
1508
+ 3
1509
+ 20
1510
+ 0
1511
+ 44
1512
+ 43
1513
+ 4
1514
+ 80
1515
+ 49
1516
+ 5
1517
+ 1
1518
+ 13
1519
+ 7
1520
+ 6
1521
+ 5
1522
+ 20
1523
+ 0
1524
+ 47
1525
+ 49
1526
+ 6
1527
+ 1
1528
+ 49
1529
+ 7
1530
+ 2
1531
+ 15
1532
+ 13
1533
+ 7
1534
+ 8
1535
+ 20
1536
+ 1
1537
+ 49
1538
+ 7
1539
+ 2
1540
+ 15
1541
+ 49
1542
+ 9
1543
+ 2
1544
+ 11
1545
+ I
1546
+ 9
1547
+ I
1548
+ 2
1549
+ I
1550
+ 2
1551
+ I
1552
+ 2
1553
+ n
1554
+ p
1555
+ 10
1556
+ x
1557
+ 6
1558
+ Primer
1559
+ n
1560
+ x
1561
+ 9
1562
+ real_time
1563
+ x
1564
+ 6
1565
+ client
1566
+ x
1567
+ 4
1568
+ Hash
1569
+ x
1570
+ 16
1571
+ new_from_literal
1572
+ x
1573
+ 6
1574
+ dom_id
1575
+ x
1576
+ 3
1577
+ []=
1578
+ x
1579
+ 7
1580
+ content
1581
+ x
1582
+ 7
1583
+ publish
1584
+ p
1585
+ 15
1586
+ I
1587
+ -1
1588
+ I
1589
+ 36
1590
+ I
1591
+ 0
1592
+ I
1593
+ 37
1594
+ I
1595
+ e
1596
+ I
1597
+ 38
1598
+ I
1599
+ 13
1600
+ I
1601
+ 3a
1602
+ I
1603
+ 1b
1604
+ I
1605
+ 39
1606
+ I
1607
+ 29
1608
+ I
1609
+ 3a
1610
+ I
1611
+ 31
1612
+ I
1613
+ 38
1614
+ I
1615
+ 35
1616
+ x
1617
+ 54
1618
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1619
+ p
1620
+ 2
1621
+ x
1622
+ 9
1623
+ cache_key
1624
+ x
1625
+ 5
1626
+ value
1627
+ x
1628
+ 7
1629
+ private
1630
+ x
1631
+ 6
1632
+ client
1633
+ M
1634
+ 1
1635
+ n
1636
+ n
1637
+ x
1638
+ 6
1639
+ client
1640
+ i
1641
+ 144
1642
+ 5
1643
+ 48
1644
+ 0
1645
+ 9
1646
+ 8
1647
+ 1
1648
+ 8
1649
+ 37
1650
+ 5
1651
+ 45
1652
+ 1
1653
+ 2
1654
+ 13
1655
+ 71
1656
+ 3
1657
+ 47
1658
+ 9
1659
+ 30
1660
+ 47
1661
+ 49
1662
+ 4
1663
+ 0
1664
+ 13
1665
+ 47
1666
+ 49
1667
+ 5
1668
+ 0
1669
+ 15
1670
+ 8
1671
+ 33
1672
+ 49
1673
+ 3
1674
+ 0
1675
+ 47
1676
+ 49
1677
+ 6
1678
+ 1
1679
+ 15
1680
+ 45
1681
+ 7
1682
+ 8
1683
+ 49
1684
+ 9
1685
+ 0
1686
+ 15
1687
+ 39
1688
+ 10
1689
+ 9
1690
+ 54
1691
+ 39
1692
+ 10
1693
+ 11
1694
+ 8
1695
+ 55
1696
+ 1
1697
+ 15
1698
+ 5
1699
+ 48
1700
+ 0
1701
+ 47
1702
+ 101
1703
+ 11
1704
+ 45
1705
+ 12
1706
+ 13
1707
+ 7
1708
+ 14
1709
+ 49
1710
+ 15
1711
+ 1
1712
+ 47
1713
+ 101
1714
+ 11
1715
+ 63
1716
+ 2
1717
+ 19
1718
+ 0
1719
+ 15
1720
+ 45
1721
+ 7
1722
+ 16
1723
+ 43
1724
+ 17
1725
+ 13
1726
+ 71
1727
+ 3
1728
+ 47
1729
+ 9
1730
+ 103
1731
+ 47
1732
+ 49
1733
+ 4
1734
+ 0
1735
+ 13
1736
+ 20
1737
+ 0
1738
+ 47
1739
+ 49
1740
+ 5
1741
+ 1
1742
+ 15
1743
+ 8
1744
+ 108
1745
+ 20
1746
+ 0
1747
+ 49
1748
+ 3
1749
+ 1
1750
+ 38
1751
+ 10
1752
+ 15
1753
+ 39
1754
+ 10
1755
+ 45
1756
+ 18
1757
+ 19
1758
+ 13
1759
+ 71
1760
+ 3
1761
+ 47
1762
+ 9
1763
+ 134
1764
+ 47
1765
+ 49
1766
+ 4
1767
+ 0
1768
+ 13
1769
+ 47
1770
+ 49
1771
+ 5
1772
+ 0
1773
+ 15
1774
+ 8
1775
+ 137
1776
+ 49
1777
+ 3
1778
+ 0
1779
+ 49
1780
+ 20
1781
+ 1
1782
+ 15
1783
+ 39
1784
+ 10
1785
+ 11
1786
+ I
1787
+ 4
1788
+ I
1789
+ 1
1790
+ I
1791
+ 0
1792
+ I
1793
+ 0
1794
+ n
1795
+ p
1796
+ 21
1797
+ x
1798
+ 13
1799
+ bayeux_server
1800
+ x
1801
+ 13
1802
+ NotConfigured
1803
+ n
1804
+ x
1805
+ 3
1806
+ new
1807
+ x
1808
+ 8
1809
+ allocate
1810
+ x
1811
+ 10
1812
+ initialize
1813
+ x
1814
+ 5
1815
+ raise
1816
+ x
1817
+ 4
1818
+ Faye
1819
+ n
1820
+ x
1821
+ 23
1822
+ ensure_reactor_running!
1823
+ x
1824
+ 7
1825
+ @client
1826
+ x
1827
+ 4
1828
+ to_s
1829
+ x
1830
+ 13
1831
+ BAYEUX_CONFIG
1832
+ n
1833
+ x
1834
+ 5
1835
+ mount
1836
+ x
1837
+ 2
1838
+ []
1839
+ n
1840
+ x
1841
+ 6
1842
+ Client
1843
+ x
1844
+ 10
1845
+ ClientAuth
1846
+ n
1847
+ x
1848
+ 13
1849
+ add_extension
1850
+ p
1851
+ 17
1852
+ I
1853
+ -1
1854
+ I
1855
+ 40
1856
+ I
1857
+ 0
1858
+ I
1859
+ 41
1860
+ I
1861
+ 26
1862
+ I
1863
+ 43
1864
+ I
1865
+ 2d
1866
+ I
1867
+ 44
1868
+ I
1869
+ 38
1870
+ I
1871
+ 46
1872
+ I
1873
+ 4e
1874
+ I
1875
+ 47
1876
+ I
1877
+ 6f
1878
+ I
1879
+ 48
1880
+ I
1881
+ 8d
1882
+ I
1883
+ 4a
1884
+ I
1885
+ 90
1886
+ x
1887
+ 54
1888
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1889
+ p
1890
+ 1
1891
+ x
1892
+ 8
1893
+ endpoint
1894
+ p
1895
+ 11
1896
+ I
1897
+ 2
1898
+ I
1899
+ 30
1900
+ I
1901
+ c
1902
+ I
1903
+ 32
1904
+ I
1905
+ 1a
1906
+ I
1907
+ 36
1908
+ I
1909
+ 28
1910
+ I
1911
+ 3e
1912
+ I
1913
+ 2c
1914
+ I
1915
+ 40
1916
+ I
1917
+ 3a
1918
+ x
1919
+ 54
1920
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1921
+ p
1922
+ 0
1923
+ p
1924
+ 19
1925
+ I
1926
+ 2
1927
+ I
1928
+ 4
1929
+ I
1930
+ 23
1931
+ I
1932
+ 5
1933
+ I
1934
+ 2d
1935
+ I
1936
+ 6
1937
+ I
1938
+ 46
1939
+ I
1940
+ 7
1941
+ I
1942
+ 5b
1943
+ I
1944
+ 9
1945
+ I
1946
+ 76
1947
+ I
1948
+ 18
1949
+ I
1950
+ 91
1951
+ I
1952
+ 24
1953
+ I
1954
+ 9f
1955
+ I
1956
+ 29
1957
+ I
1958
+ ad
1959
+ I
1960
+ 2f
1961
+ I
1962
+ c9
1963
+ x
1964
+ 54
1965
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1966
+ p
1967
+ 0
1968
+ x
1969
+ 13
1970
+ attach_method
1971
+ p
1972
+ 3
1973
+ I
1974
+ 2
1975
+ I
1976
+ 2
1977
+ I
1978
+ 21
1979
+ x
1980
+ 54
1981
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1982
+ p
1983
+ 0
1984
+ x
1985
+ 13
1986
+ attach_method
1987
+ p
1988
+ 3
1989
+ I
1990
+ 0
1991
+ I
1992
+ 1
1993
+ I
1994
+ 1c
1995
+ x
1996
+ 54
1997
+ /Users/jcoglan/projects/primer/lib/primer/real_time.rb
1998
+ p
1999
+ 0