axlsx 1.0.10 → 1.0.11

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 (102) hide show
  1. data/CHANGELOG.md +14 -0
  2. data/Gemfile +3 -7
  3. data/Gemfile.lock +17 -8
  4. data/README.md +88 -59
  5. data/axlsx.gemspec +9 -3
  6. data/doc/Axlsx.html +482 -248
  7. data/doc/Axlsx/App.html +237 -159
  8. data/doc/Axlsx/Axis.html +75 -51
  9. data/doc/Axlsx/Bar3DChart.html +75 -53
  10. data/doc/Axlsx/BarSeries.html +45 -31
  11. data/doc/Axlsx/Border.html +70 -50
  12. data/doc/Axlsx/BorderPr.html +80 -62
  13. data/doc/Axlsx/CatAxis.html +62 -43
  14. data/doc/Axlsx/CatAxisData.html +23 -16
  15. data/doc/Axlsx/Cell.html +2022 -393
  16. data/doc/Axlsx/CellAlignment.html +103 -75
  17. data/doc/Axlsx/CellProtection.html +44 -30
  18. data/doc/Axlsx/CellStyle.html +66 -46
  19. data/doc/Axlsx/Chart.html +159 -108
  20. data/doc/Axlsx/Color.html +73 -52
  21. data/doc/Axlsx/ContentType.html +20 -14
  22. data/doc/Axlsx/Core.html +29 -20
  23. data/doc/Axlsx/DataTypeValidator.html +27 -19
  24. data/doc/Axlsx/Default.html +39 -27
  25. data/doc/Axlsx/Drawing.html +104 -70
  26. data/doc/Axlsx/Fill.html +33 -23
  27. data/doc/Axlsx/Font.html +132 -98
  28. data/doc/Axlsx/GradientFill.html +70 -48
  29. data/doc/Axlsx/GradientStop.html +31 -21
  30. data/doc/Axlsx/GraphicFrame.html +40 -27
  31. data/doc/Axlsx/Line3DChart.html +62 -43
  32. data/doc/Axlsx/LineSeries.html +37 -25
  33. data/doc/Axlsx/Marker.html +63 -43
  34. data/doc/Axlsx/NumFmt.html +79 -65
  35. data/doc/Axlsx/OneCellAnchor.html +78 -54
  36. data/doc/Axlsx/Override.html +39 -27
  37. data/doc/Axlsx/Package.html +103 -163
  38. data/doc/Axlsx/Parser.html +549 -0
  39. data/doc/Axlsx/PatternFill.html +66 -51
  40. data/doc/Axlsx/Pic.html +230 -123
  41. data/doc/Axlsx/PictureLocking.html +1159 -0
  42. data/doc/Axlsx/Pie3DChart.html +23 -16
  43. data/doc/Axlsx/PieSeries.html +44 -30
  44. data/doc/Axlsx/RegexValidator.html +14 -10
  45. data/doc/Axlsx/Relationship.html +40 -27
  46. data/doc/Axlsx/Relationships.html +20 -14
  47. data/doc/Axlsx/RestrictionValidator.html +25 -17
  48. data/doc/Axlsx/Row.html +73 -53
  49. data/doc/Axlsx/Scaling.html +46 -31
  50. data/doc/Axlsx/SerAxis.html +49 -33
  51. data/doc/Axlsx/Series.html +51 -35
  52. data/doc/Axlsx/SeriesTitle.html +14 -10
  53. data/doc/Axlsx/Styles.html +210 -156
  54. data/doc/Axlsx/TableStyle.html +47 -32
  55. data/doc/Axlsx/TableStyleElement.html +75 -61
  56. data/doc/Axlsx/TableStyles.html +42 -28
  57. data/doc/Axlsx/Title.html +36 -25
  58. data/doc/Axlsx/TwoCellAnchor.html +83 -58
  59. data/doc/Axlsx/ValAxis.html +35 -24
  60. data/doc/Axlsx/ValAxisData.html +13 -9
  61. data/doc/Axlsx/View3D.html +64 -43
  62. data/doc/Axlsx/Workbook.html +305 -147
  63. data/doc/Axlsx/Worksheet.html +567 -271
  64. data/doc/Axlsx/Xf.html +114 -77
  65. data/doc/_index.html +15 -1
  66. data/doc/class_list.html +1 -1
  67. data/doc/css/style.css +1 -1
  68. data/doc/file.LICENSE.html +25 -21
  69. data/doc/file.README.html +89 -66
  70. data/doc/index.html +89 -66
  71. data/doc/js/app.js +4 -4
  72. data/doc/method_list.html +717 -413
  73. data/doc/top-level-namespace.html +1 -1
  74. data/examples/example.rb +52 -25
  75. data/examples/follow_20111202.xlsx +0 -0
  76. data/lib/axlsx.rb +14 -1
  77. data/lib/axlsx/drawing/chart.rb +20 -4
  78. data/lib/axlsx/drawing/drawing.rb +1 -1
  79. data/lib/axlsx/drawing/pic.rb +5 -2
  80. data/lib/axlsx/drawing/picture_locking.rb +72 -0
  81. data/lib/axlsx/package.rb +9 -7
  82. data/lib/axlsx/stylesheet/color.rb +19 -9
  83. data/lib/axlsx/stylesheet/styles.rb +2 -0
  84. data/lib/axlsx/util/constants.rb +6 -0
  85. data/lib/axlsx/util/parser.rb +43 -0
  86. data/lib/axlsx/version.rb +1 -1
  87. data/lib/axlsx/workbook/workbook.rb +21 -1
  88. data/lib/axlsx/workbook/worksheet/cell.rb +159 -7
  89. data/lib/axlsx/workbook/worksheet/row.rb +4 -2
  90. data/lib/axlsx/workbook/worksheet/worksheet.rb +38 -4
  91. data/test/drawing/tc_picture_locking.rb +73 -0
  92. data/test/rels/tc_relationships.rb +0 -1
  93. data/test/stylesheet/tc_styles.rb +0 -12
  94. data/test/tc_package.rb +5 -3
  95. data/test/workbook/tc_workbook.rb +7 -0
  96. data/test/workbook/worksheet/tc_cell.rb +102 -1
  97. data/test/workbook/worksheet/tc_worksheet.rb +17 -0
  98. metadata +79 -19
  99. data/doc/Axlsx/Ar.html +0 -196
  100. data/doc/Axlsx/Ar/ClassMethods.html +0 -188
  101. data/doc/Axlsx/Ar/InstanceMethods.html +0 -108
  102. data/doc/Axlsx/Ar/SingletonMethods.html +0 -312
data/doc/Axlsx/Axis.html CHANGED
@@ -94,8 +94,9 @@
94
94
 
95
95
  <h2>Overview</h2><div class="docstring">
96
96
  <div class="discussion">
97
-
98
- <p>the access class defines common properties and values for a chart axis.</p>
97
+ <p>
98
+ the access class defines common properties and values for a chart axis.
99
+ </p>
99
100
 
100
101
 
101
102
  </div>
@@ -131,8 +132,9 @@
131
132
 
132
133
 
133
134
 
134
- <span class="summary_desc"><div class='inline'>
135
- <p>the id of the axis.</p>
135
+ <span class="summary_desc"><div class='inline'><p>
136
+ the id of the axis.
137
+ </p>
136
138
  </div></span>
137
139
 
138
140
  </li>
@@ -157,8 +159,9 @@
157
159
 
158
160
 
159
161
 
160
- <span class="summary_desc"><div class='inline'>
161
- <p>The position of the axis must be one of [:l, :r, :t, :b].</p>
162
+ <span class="summary_desc"><div class='inline'><p>
163
+ The position of the axis must be one of [:l, :r, :t, :b].
164
+ </p>
162
165
  </div></span>
163
166
 
164
167
  </li>
@@ -183,8 +186,9 @@
183
186
 
184
187
 
185
188
 
186
- <span class="summary_desc"><div class='inline'>
187
- <p>The perpendicular axis.</p>
189
+ <span class="summary_desc"><div class='inline'><p>
190
+ The perpendicular axis.
191
+ </p>
188
192
  </div></span>
189
193
 
190
194
  </li>
@@ -209,9 +213,10 @@
209
213
 
210
214
 
211
215
 
212
- <span class="summary_desc"><div class='inline'>
213
- <p>specifies how the perpendicular axis is crossed must be one of [:autoZero,
214
- :min, :max].</p>
216
+ <span class="summary_desc"><div class='inline'><p>
217
+ specifies how the perpendicular axis is crossed must be one of [:autoZero,
218
+ :min, :max].
219
+ </p>
215
220
  </div></span>
216
221
 
217
222
  </li>
@@ -236,8 +241,9 @@
236
241
 
237
242
 
238
243
 
239
- <span class="summary_desc"><div class='inline'>
240
- <p>The number format format code for this axis default :General.</p>
244
+ <span class="summary_desc"><div class='inline'><p>
245
+ The number format format code for this axis default :General.
246
+ </p>
241
247
  </div></span>
242
248
 
243
249
  </li>
@@ -262,8 +268,9 @@
262
268
 
263
269
 
264
270
 
265
- <span class="summary_desc"><div class='inline'>
266
- <p>The scaling of the axis.</p>
271
+ <span class="summary_desc"><div class='inline'><p>
272
+ The scaling of the axis.
273
+ </p>
267
274
  </div></span>
268
275
 
269
276
  </li>
@@ -288,8 +295,9 @@
288
295
 
289
296
 
290
297
 
291
- <span class="summary_desc"><div class='inline'>
292
- <p>the position of the tick labels must be one of [:nextTo, :high, :low].</p>
298
+ <span class="summary_desc"><div class='inline'><p>
299
+ the position of the tick labels must be one of [:nextTo, :high, :low].
300
+ </p>
293
301
  </div></span>
294
302
 
295
303
  </li>
@@ -326,8 +334,9 @@
326
334
 
327
335
 
328
336
 
329
- <span class="summary_desc"><div class='inline'>
330
- <p>Creates an Axis object.</p>
337
+ <span class="summary_desc"><div class='inline'><p>
338
+ Creates an Axis object.
339
+ </p>
331
340
  </div></span>
332
341
 
333
342
  </li>
@@ -349,8 +358,9 @@
349
358
 
350
359
 
351
360
 
352
- <span class="summary_desc"><div class='inline'>
353
- <p>Serializes the common axis.</p>
361
+ <span class="summary_desc"><div class='inline'><p>
362
+ Serializes the common axis.
363
+ </p>
354
364
  </div></span>
355
365
 
356
366
  </li>
@@ -371,8 +381,9 @@
371
381
 
372
382
  </p><div class="docstring">
373
383
  <div class="discussion">
374
-
375
- <p>Creates an Axis object</p>
384
+ <p>
385
+ Creates an Axis object
386
+ </p>
376
387
 
377
388
 
378
389
  </div>
@@ -391,8 +402,9 @@
391
402
 
392
403
 
393
404
  &mdash;
394
- <div class='inline'>
395
- <p>the id of this axis</p>
405
+ <div class='inline'><p>
406
+ the id of this axis
407
+ </p>
396
408
  </div>
397
409
 
398
410
  </li>
@@ -407,8 +419,9 @@
407
419
 
408
420
 
409
421
  &mdash;
410
- <div class='inline'>
411
- <p>the id of the perpendicular axis</p>
422
+ <div class='inline'><p>
423
+ the id of the perpendicular axis
424
+ </p>
412
425
  </div>
413
426
 
414
427
  </li>
@@ -425,8 +438,9 @@
425
438
 
426
439
 
427
440
  &mdash;
428
- <div class='inline'>
429
- <p>a customizable set of options</p>
441
+ <div class='inline'><p>
442
+ a customizable set of options
443
+ </p>
430
444
  </div>
431
445
 
432
446
  </li>
@@ -484,8 +498,9 @@
484
498
 
485
499
 
486
500
  &mdash;
487
- <div class='inline'>
488
- <p>If axId or crossAx are not unsigned integers</p>
501
+ <div class='inline'><p>
502
+ If axId or crossAx are not unsigned integers
503
+ </p>
489
504
  </div>
490
505
 
491
506
  </li>
@@ -555,8 +570,9 @@
555
570
 
556
571
  </p><div class="docstring">
557
572
  <div class="discussion">
558
-
559
- <p>the id of the axis.</p>
573
+ <p>
574
+ the id of the axis.
575
+ </p>
560
576
 
561
577
 
562
578
  </div>
@@ -611,8 +627,9 @@
611
627
 
612
628
  </p><div class="docstring">
613
629
  <div class="discussion">
614
-
615
- <p>The position of the axis must be one of [:l, :r, :t, :b]</p>
630
+ <p>
631
+ The position of the axis must be one of [:l, :r, :t, :b]
632
+ </p>
616
633
 
617
634
 
618
635
  </div>
@@ -667,8 +684,9 @@
667
684
 
668
685
  </p><div class="docstring">
669
686
  <div class="discussion">
670
-
671
- <p>The perpendicular axis</p>
687
+ <p>
688
+ The perpendicular axis
689
+ </p>
672
690
 
673
691
 
674
692
  </div>
@@ -723,9 +741,10 @@
723
741
 
724
742
  </p><div class="docstring">
725
743
  <div class="discussion">
726
-
727
- <p>specifies how the perpendicular axis is crossed must be one of [:autoZero,
728
- :min, :max]</p>
744
+ <p>
745
+ specifies how the perpendicular axis is crossed must be one of [:autoZero,
746
+ :min, :max]
747
+ </p>
729
748
 
730
749
 
731
750
  </div>
@@ -780,8 +799,9 @@
780
799
 
781
800
  </p><div class="docstring">
782
801
  <div class="discussion">
783
-
784
- <p>The number format format code for this axis default :General</p>
802
+ <p>
803
+ The number format format code for this axis default :General
804
+ </p>
785
805
 
786
806
 
787
807
  </div>
@@ -836,8 +856,9 @@
836
856
 
837
857
  </p><div class="docstring">
838
858
  <div class="discussion">
839
-
840
- <p>The scaling of the axis</p>
859
+ <p>
860
+ The scaling of the axis
861
+ </p>
841
862
 
842
863
 
843
864
  </div>
@@ -899,8 +920,9 @@
899
920
 
900
921
  </p><div class="docstring">
901
922
  <div class="discussion">
902
-
903
- <p>the position of the tick labels must be one of [:nextTo, :high, :low]</p>
923
+ <p>
924
+ the position of the tick labels must be one of [:nextTo, :high, :low]
925
+ </p>
904
926
 
905
927
 
906
928
  </div>
@@ -959,8 +981,9 @@
959
981
 
960
982
  </p><div class="docstring">
961
983
  <div class="discussion">
962
-
963
- <p>Serializes the common axis</p>
984
+ <p>
985
+ Serializes the common axis
986
+ </p>
964
987
 
965
988
 
966
989
  </div>
@@ -979,8 +1002,9 @@
979
1002
 
980
1003
 
981
1004
  &mdash;
982
- <div class='inline'>
983
- <p>The document builder instance this objects xml will be added to.</p>
1005
+ <div class='inline'><p>
1006
+ The document builder instance this objects xml will be added to.
1007
+ </p>
984
1008
  </div>
985
1009
 
986
1010
  </li>
@@ -1042,7 +1066,7 @@
1042
1066
  </div>
1043
1067
 
1044
1068
  <div id="footer">
1045
- Generated on Wed Nov 30 08:53:39 2011 by
1069
+ Generated on Mon Dec 5 14:21:16 2011 by
1046
1070
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1047
1071
  0.7.3 (ruby-1.8.7).
1048
1072
  </div>
@@ -96,9 +96,10 @@
96
96
 
97
97
  <h2>Overview</h2><div class="docstring">
98
98
  <div class="discussion">
99
-
100
- <p>The Bar3DChart is a three dimentional barchart (who would have guessed?)
101
- that you can add to your worksheet.</p>
99
+ <p>
100
+ The Bar3DChart is a three dimentional barchart (who would have guessed?)
101
+ that you can add to your worksheet.
102
+ </p>
102
103
 
103
104
 
104
105
  </div>
@@ -127,8 +128,9 @@ that you can add to your worksheet.</p>
127
128
  <dt id="GAP_AMOUNT_PERCENT-constant" class="">GAP_AMOUNT_PERCENT =
128
129
  <div class="docstring">
129
130
  <div class="discussion">
130
-
131
- <p>validation regex for gap amount percent</p>
131
+ <p>
132
+ validation regex for gap amount percent
133
+ </p>
132
134
 
133
135
 
134
136
  </div>
@@ -171,8 +173,9 @@ that you can add to your worksheet.</p>
171
173
 
172
174
 
173
175
 
174
- <span class="summary_desc"><div class='inline'>
175
- <p>The direction of the bars in the chart must be one of [:bar, :col].</p>
176
+ <span class="summary_desc"><div class='inline'><p>
177
+ The direction of the bars in the chart must be one of [:bar, :col].
178
+ </p>
176
179
  </div></span>
177
180
 
178
181
  </li>
@@ -197,8 +200,9 @@ that you can add to your worksheet.</p>
197
200
 
198
201
 
199
202
 
200
- <span class="summary_desc"><div class='inline'>
201
- <p>the category axis.</p>
203
+ <span class="summary_desc"><div class='inline'><p>
204
+ the category axis.
205
+ </p>
202
206
  </div></span>
203
207
 
204
208
  </li>
@@ -223,9 +227,10 @@ that you can add to your worksheet.</p>
223
227
 
224
228
 
225
229
 
226
- <span class="summary_desc"><div class='inline'>
227
- <p>space between bar or column clusters, as a percentage of the bar or column
228
- width.</p>
230
+ <span class="summary_desc"><div class='inline'><p>
231
+ space between bar or column clusters, as a percentage of the bar or column
232
+ width.
233
+ </p>
229
234
  </div></span>
230
235
 
231
236
  </li>
@@ -250,9 +255,10 @@ width.</p>
250
255
 
251
256
 
252
257
 
253
- <span class="summary_desc"><div class='inline'>
254
- <p>space between bar or column clusters, as a percentage of the bar or column
255
- width.</p>
258
+ <span class="summary_desc"><div class='inline'><p>
259
+ space between bar or column clusters, as a percentage of the bar or column
260
+ width.
261
+ </p>
256
262
  </div></span>
257
263
 
258
264
  </li>
@@ -277,8 +283,9 @@ width.</p>
277
283
 
278
284
 
279
285
 
280
- <span class="summary_desc"><div class='inline'>
281
- <p>grouping for a column, line, or area chart.</p>
286
+ <span class="summary_desc"><div class='inline'><p>
287
+ grouping for a column, line, or area chart.
288
+ </p>
282
289
  </div></span>
283
290
 
284
291
  </li>
@@ -303,9 +310,10 @@ width.</p>
303
310
 
304
311
 
305
312
 
306
- <span class="summary_desc"><div class='inline'>
307
- <p>The shabe of the bars or columns must be one of [:cone, :coneToMax, :box,
308
- :cylinder, :pyramid, :pyramidToMax].</p>
313
+ <span class="summary_desc"><div class='inline'><p>
314
+ The shabe of the bars or columns must be one of [:cone, :coneToMax, :box,
315
+ :cylinder, :pyramid, :pyramidToMax].
316
+ </p>
309
317
  </div></span>
310
318
 
311
319
  </li>
@@ -330,8 +338,9 @@ width.</p>
330
338
 
331
339
 
332
340
 
333
- <span class="summary_desc"><div class='inline'>
334
- <p>the valueaxis.</p>
341
+ <span class="summary_desc"><div class='inline'><p>
342
+ the valueaxis.
343
+ </p>
335
344
  </div></span>
336
345
 
337
346
  </li>
@@ -376,8 +385,9 @@ width.</p>
376
385
 
377
386
 
378
387
 
379
- <span class="summary_desc"><div class='inline'>
380
- <p>Creates a new bar chart object.</p>
388
+ <span class="summary_desc"><div class='inline'><p>
389
+ Creates a new bar chart object.
390
+ </p>
381
391
  </div></span>
382
392
 
383
393
  </li>
@@ -399,8 +409,9 @@ width.</p>
399
409
 
400
410
 
401
411
 
402
- <span class="summary_desc"><div class='inline'>
403
- <p>Serializes the bar chart.</p>
412
+ <span class="summary_desc"><div class='inline'><p>
413
+ Serializes the bar chart.
414
+ </p>
404
415
  </div></span>
405
416
 
406
417
  </li>
@@ -431,8 +442,9 @@ width.</p>
431
442
 
432
443
  </p><div class="docstring">
433
444
  <div class="discussion">
434
-
435
- <p>Creates a new bar chart object</p>
445
+ <p>
446
+ Creates a new bar chart object
447
+ </p>
436
448
 
437
449
 
438
450
  </div>
@@ -451,8 +463,9 @@ width.</p>
451
463
 
452
464
 
453
465
  &mdash;
454
- <div class='inline'>
455
- <p>The workbook that owns this chart.</p>
466
+ <div class='inline'><p>
467
+ The workbook that owns this chart.
468
+ </p>
456
469
  </div>
457
470
 
458
471
  </li>
@@ -469,8 +482,9 @@ width.</p>
469
482
 
470
483
 
471
484
  &mdash;
472
- <div class='inline'>
473
- <p>a customizable set of options</p>
485
+ <div class='inline'><p>
486
+ a customizable set of options
487
+ </p>
474
488
  </div>
475
489
 
476
490
  </li>
@@ -672,8 +686,9 @@ width.</p>
672
686
 
673
687
  </p><div class="docstring">
674
688
  <div class="discussion">
675
-
676
- <p>The direction of the bars in the chart must be one of [:bar, :col]</p>
689
+ <p>
690
+ The direction of the bars in the chart must be one of [:bar, :col]
691
+ </p>
677
692
 
678
693
 
679
694
  </div>
@@ -728,8 +743,9 @@ width.</p>
728
743
 
729
744
  </p><div class="docstring">
730
745
  <div class="discussion">
731
-
732
- <p>the category axis</p>
746
+ <p>
747
+ the category axis
748
+ </p>
733
749
 
734
750
 
735
751
  </div>
@@ -784,9 +800,10 @@ width.</p>
784
800
 
785
801
  </p><div class="docstring">
786
802
  <div class="discussion">
787
-
788
- <p>space between bar or column clusters, as a percentage of the bar or column
789
- width.</p>
803
+ <p>
804
+ space between bar or column clusters, as a percentage of the bar or column
805
+ width.
806
+ </p>
790
807
 
791
808
 
792
809
  </div>
@@ -841,9 +858,10 @@ width.</p>
841
858
 
842
859
  </p><div class="docstring">
843
860
  <div class="discussion">
844
-
845
- <p>space between bar or column clusters, as a percentage of the bar or column
846
- width.</p>
861
+ <p>
862
+ space between bar or column clusters, as a percentage of the bar or column
863
+ width.
864
+ </p>
847
865
 
848
866
 
849
867
  </div>
@@ -898,9 +916,10 @@ width.</p>
898
916
 
899
917
  </p><div class="docstring">
900
918
  <div class="discussion">
901
-
902
- <p>grouping for a column, line, or area chart. must be one of
903
- [:percentStacked, :clustered, :standard, :stacked]</p>
919
+ <p>
920
+ grouping for a column, line, or area chart. must be one of
921
+ [:percentStacked, :clustered, :standard, :stacked]
922
+ </p>
904
923
 
905
924
 
906
925
  </div>
@@ -955,9 +974,10 @@ width.</p>
955
974
 
956
975
  </p><div class="docstring">
957
976
  <div class="discussion">
958
-
959
- <p>The shabe of the bars or columns must be one of [:cone, :coneToMax, :box,
960
- :cylinder, :pyramid, :pyramidToMax]</p>
977
+ <p>
978
+ The shabe of the bars or columns must be one of [:cone, :coneToMax, :box,
979
+ :cylinder, :pyramid, :pyramidToMax]
980
+ </p>
961
981
 
962
982
 
963
983
  </div>
@@ -1012,8 +1032,9 @@ width.</p>
1012
1032
 
1013
1033
  </p><div class="docstring">
1014
1034
  <div class="discussion">
1015
-
1016
- <p>the valueaxis</p>
1035
+ <p>
1036
+ the valueaxis
1037
+ </p>
1017
1038
 
1018
1039
 
1019
1040
  </div>
@@ -1072,8 +1093,9 @@ width.</p>
1072
1093
 
1073
1094
  </p><div class="docstring">
1074
1095
  <div class="discussion">
1075
-
1076
- <p>Serializes the bar chart</p>
1096
+ <p>
1097
+ Serializes the bar chart
1098
+ </p>
1077
1099
 
1078
1100
 
1079
1101
  </div>
@@ -1151,7 +1173,7 @@ width.</p>
1151
1173
  </div>
1152
1174
 
1153
1175
  <div id="footer">
1154
- Generated on Wed Nov 30 08:53:46 2011 by
1176
+ Generated on Mon Dec 5 14:21:08 2011 by
1155
1177
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
1156
1178
  0.7.3 (ruby-1.8.7).
1157
1179
  </div>