rbatch 2.1.1 → 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. data/README.ja.md +14 -5
  2. data/README.md +164 -154
  3. data/bin/rbatch-init +21 -13
  4. data/doc/RBatch/Cmd.html +300 -316
  5. data/doc/RBatch/CmdException.html +146 -141
  6. data/doc/RBatch/CmdResult.html +467 -470
  7. data/doc/RBatch/Config.html +392 -433
  8. data/doc/RBatch/Controller.html +374 -0
  9. data/doc/RBatch/DoubleRunCheckException.html +146 -141
  10. data/doc/RBatch/DoubleRunChecker.html +258 -256
  11. data/doc/RBatch/Journal.html +332 -0
  12. data/doc/RBatch/Log.html +636 -805
  13. data/doc/RBatch/LogException.html +164 -0
  14. data/doc/RBatch/RBatch/RBatch/ConfigException.html +164 -0
  15. data/doc/RBatch/RBatch/RBatch.html +163 -0
  16. data/doc/RBatch/RBatch/VariablesException.html +164 -0
  17. data/doc/RBatch/RBatch.html +165 -0
  18. data/doc/RBatch/RunConf/Exception.html +146 -141
  19. data/doc/RBatch/RunConf.html +478 -532
  20. data/doc/RBatch/Variables.html +437 -0
  21. data/doc/RBatch.html +388 -862
  22. data/doc/created.rid +11 -9
  23. data/doc/index.html +178 -184
  24. data/doc/js/darkfish.js +9 -7
  25. data/doc/lib/rbatch/cmd_rb.html +46 -44
  26. data/doc/lib/rbatch/config_rb.html +42 -42
  27. data/doc/lib/rbatch/controller_rb.html +66 -0
  28. data/doc/lib/rbatch/double_run_checker_rb.html +42 -42
  29. data/doc/lib/rbatch/journal_rb.html +52 -0
  30. data/doc/lib/rbatch/log_rb.html +46 -46
  31. data/doc/lib/rbatch/run_conf_rb.html +42 -42
  32. data/doc/lib/rbatch/variables_rb.html +54 -0
  33. data/doc/lib/rbatch/version_rb.html +38 -38
  34. data/doc/lib/rbatch_rb.html +40 -52
  35. data/doc/rdoc.css +365 -308
  36. data/lib/rbatch/cmd.rb +15 -58
  37. data/lib/rbatch/config.rb +7 -7
  38. data/lib/rbatch/controller.rb +37 -61
  39. data/lib/rbatch/double_run_checker.rb +0 -0
  40. data/lib/rbatch/journal.rb +40 -0
  41. data/lib/rbatch/log.rb +71 -129
  42. data/lib/rbatch/run_conf.rb +13 -24
  43. data/lib/rbatch/variables.rb +82 -0
  44. data/lib/rbatch/version.rb +1 -1
  45. data/lib/rbatch.rb +7 -36
  46. data/sample/.rbatchrc +41 -7
  47. data/spec/01_rbach_spec.rb +99 -0
  48. data/spec/{cmd_spec.rb → rbatch/cmd_spec.rb} +40 -43
  49. data/spec/rbatch/config_spec.rb +67 -0
  50. data/spec/rbatch/controller_spec.rb +18 -0
  51. data/spec/{double_run_checker_spec.rb → rbatch/double_run_checker_spec.rb} +3 -0
  52. data/spec/rbatch/journal_spec.rb +29 -0
  53. data/spec/rbatch/log_spec.rb +350 -0
  54. data/spec/{run_conf_spec.rb → rbatch/run_conf_spec.rb} +13 -5
  55. data/spec/rbatch/variables_spec.rb +68 -0
  56. data/spec/spec_helper.rb +4 -5
  57. metadata +33 -17
  58. data/lib/rbatch/common_config.rb +0 -0
  59. data/spec/common_config_spec.rb +0 -85
  60. data/spec/config_spec.rb +0 -79
  61. data/spec/log_spec.rb +0 -430
  62. data/spec/rbatch_spec.rb +0 -22
data/doc/rdoc.css CHANGED
@@ -12,76 +12,76 @@
12
12
 
13
13
  body {
14
14
  background: #efefef;
15
- font: 14px "Helvetica Neue", Helvetica, Tahoma, sans-serif;
15
+ font: 14px "Helvetica Neue", Helvetica, Tahoma, sans-serif;
16
16
  }
17
17
  body.class, body.module, body.file {
18
- margin-left: 40px;
18
+ margin-left: 40px;
19
19
  }
20
20
  body.file-popup {
21
- font-size: 90%;
22
- margin-left: 0;
21
+ font-size: 90%;
22
+ margin-left: 0;
23
23
  }
24
24
 
25
25
  h1 {
26
- font-size: 300%;
27
- text-shadow: rgba(135,145,135,0.65) 2px 2px 3px;
28
- color: #6C8C22;
26
+ font-size: 300%;
27
+ text-shadow: rgba(135,145,135,0.65) 2px 2px 3px;
28
+ color: #6C8C22;
29
29
  }
30
30
  h2,h3,h4 { margin-top: 1.5em; }
31
31
 
32
32
  :link,
33
33
  :visited {
34
- color: #6C8C22;
35
- text-decoration: none;
34
+ color: #6C8C22;
35
+ text-decoration: none;
36
36
  }
37
37
  :link:hover,
38
38
  :visited:hover {
39
- border-bottom: 1px dotted #6C8C22;
39
+ border-bottom: 1px dotted #6C8C22;
40
40
  }
41
41
 
42
42
  pre {
43
- background: #ddd;
44
- padding: 0.5em 0;
43
+ background: #ddd;
44
+ padding: 0.5em 0;
45
45
  }
46
46
 
47
47
 
48
48
  /* @group Generic Classes */
49
49
 
50
50
  .initially-hidden {
51
- display: none;
51
+ display: none;
52
52
  }
53
53
 
54
54
  .quicksearch-field {
55
- width: 98%;
56
- background: #ddd;
57
- border: 1px solid #aaa;
58
- height: 1.5em;
59
- -webkit-border-radius: 4px;
55
+ width: 98%;
56
+ background: #ddd;
57
+ border: 1px solid #aaa;
58
+ height: 1.5em;
59
+ -webkit-border-radius: 4px;
60
60
  }
61
61
  .quicksearch-field:focus {
62
- background: #f1edba;
62
+ background: #f1edba;
63
63
  }
64
64
 
65
65
  .missing-docs {
66
- font-size: 120%;
67
- background: white url(images/wrench_orange.png) no-repeat 4px center;
68
- color: #ccc;
69
- line-height: 2em;
70
- border: 1px solid #d00;
71
- opacity: 1;
72
- padding-left: 20px;
73
- text-indent: 24px;
74
- letter-spacing: 3px;
75
- font-weight: bold;
76
- -webkit-border-radius: 5px;
77
- -moz-border-radius: 5px;
66
+ font-size: 120%;
67
+ background: white url(images/wrench_orange.png) no-repeat 4px center;
68
+ color: #ccc;
69
+ line-height: 2em;
70
+ border: 1px solid #d00;
71
+ opacity: 1;
72
+ padding-left: 20px;
73
+ text-indent: 24px;
74
+ letter-spacing: 3px;
75
+ font-weight: bold;
76
+ -webkit-border-radius: 5px;
77
+ -moz-border-radius: 5px;
78
78
  }
79
79
 
80
80
  .target-section {
81
- border: 2px solid #dcce90;
82
- border-left-width: 8px;
83
- padding: 0 1em;
84
- background: #fff3c2;
81
+ border: 2px solid #dcce90;
82
+ border-left-width: 8px;
83
+ padding: 0 1em;
84
+ background: #fff3c2;
85
85
  }
86
86
 
87
87
  /* @end */
@@ -89,37 +89,60 @@ pre {
89
89
 
90
90
  /* @group Index Page, Standalone file pages */
91
91
  body.indexpage {
92
- margin: 1em 3em;
92
+ margin: 1em 3em;
93
93
  }
94
94
  body.indexpage p,
95
95
  body.indexpage div,
96
96
  body.file p {
97
- margin: 1em 0;
97
+ margin: 1em 0;
98
+ }
99
+
100
+ .indexpage .rdoc-list p, .file .rdoc-list p {
101
+ margin: 0em 0;
102
+ }
103
+
104
+ .indexpage ol,
105
+ .file #documentation ol {
106
+ line-height: 160%;
98
107
  }
99
108
 
100
109
  .indexpage ul,
101
110
  .file #documentation ul {
102
- line-height: 160%;
103
- list-style: none;
111
+ line-height: 160%;
112
+ list-style: none;
104
113
  }
105
114
  .indexpage ul :link,
106
115
  .indexpage ul :visited {
107
- font-size: 16px;
116
+ font-size: 16px;
108
117
  }
109
118
 
110
119
  .indexpage li,
111
120
  .file #documentation li {
112
- padding-left: 20px;
113
- background: url(images/bullet_black.png) no-repeat left 4px;
121
+ padding-left: 20px;
122
+ }
123
+
124
+ .indexpage ol,
125
+ .file #documentation ol {
126
+ margin-left: 20px;
127
+ }
128
+
129
+ .indexpage ol > li,
130
+ .file #documentation ol > li {
131
+ padding-left: 0;
132
+ }
133
+
134
+ .indexpage ul > li,
135
+ .file #documentation ul > li {
136
+ background: url(images/bullet_black.png) no-repeat left 4px;
114
137
  }
115
138
  .indexpage li.module {
116
- background: url(images/package.png) no-repeat left 4px;
139
+ background: url(images/package.png) no-repeat left 4px;
117
140
  }
118
141
  .indexpage li.class {
119
- background: url(images/ruby.png) no-repeat left 4px;
142
+ background: url(images/ruby.png) no-repeat left 4px;
120
143
  }
121
144
  .indexpage li.file {
122
- background: url(images/page_white_text.png) no-repeat left 4px;
145
+ background: url(images/page_white_text.png) no-repeat left 4px;
123
146
  }
124
147
  .file li p,
125
148
  .indexpage li p {
@@ -133,48 +156,48 @@ body.file p {
133
156
  .class #metadata,
134
157
  .file #metadata,
135
158
  .module #metadata {
136
- float: left;
137
- width: 260px;
159
+ float: left;
160
+ width: 260px;
138
161
  }
139
162
 
140
163
  .class #documentation,
141
164
  .file #documentation,
142
165
  .module #documentation {
143
- margin: 2em 1em 5em 300px;
144
- min-width: 340px;
166
+ margin: 2em 1em 5em 300px;
167
+ min-width: 340px;
145
168
  }
146
169
 
147
170
  .file #metadata {
148
- margin: 0.8em;
171
+ margin: 0.8em;
149
172
  }
150
173
 
151
174
  #validator-badges {
152
- clear: both;
153
- margin: 1em 1em 2em;
175
+ clear: both;
176
+ margin: 1em 1em 2em;
154
177
  }
155
178
 
156
179
  /* @end */
157
180
 
158
181
  /* @group Metadata Section */
159
182
  #metadata .section {
160
- background-color: #dedede;
161
- -moz-border-radius: 5px;
162
- -webkit-border-radius: 5px;
163
- border: 1px solid #aaa;
164
- margin: 0 8px 16px;
165
- font-size: 90%;
166
- overflow: hidden;
183
+ background-color: #dedede;
184
+ -moz-border-radius: 5px;
185
+ -webkit-border-radius: 5px;
186
+ border: 1px solid #aaa;
187
+ margin: 0 8px 16px;
188
+ font-size: 90%;
189
+ overflow: hidden;
167
190
  }
168
191
  #metadata h3.section-header {
169
- margin: 0;
170
- padding: 2px 8px;
171
- background: #ccc;
172
- color: #666;
173
- -moz-border-radius-topleft: 4px;
174
- -moz-border-radius-topright: 4px;
175
- -webkit-border-top-left-radius: 4px;
176
- -webkit-border-top-right-radius: 4px;
177
- border-bottom: 1px solid #aaa;
192
+ margin: 0;
193
+ padding: 2px 8px;
194
+ background: #ccc;
195
+ color: #666;
196
+ -moz-border-radius-topleft: 4px;
197
+ -moz-border-radius-topright: 4px;
198
+ -webkit-border-top-left-radius: 4px;
199
+ -webkit-border-top-right-radius: 4px;
200
+ border-bottom: 1px solid #aaa;
178
201
  }
179
202
  #metadata #home-section h3.section-header {
180
203
  border-bottom: 0;
@@ -183,33 +206,33 @@ body.file p {
183
206
  #metadata ul,
184
207
  #metadata dl,
185
208
  #metadata p {
186
- padding: 8px;
187
- list-style: none;
209
+ padding: 8px;
210
+ list-style: none;
188
211
  }
189
212
 
190
213
  #file-metadata ul {
191
- padding-left: 28px;
192
- list-style-image: url(images/page_green.png);
214
+ padding-left: 28px;
215
+ list-style-image: url(images/page_green.png);
193
216
  }
194
217
 
195
218
  dl.svninfo {
196
- color: #666;
197
- margin: 0;
219
+ color: #666;
220
+ margin: 0;
198
221
  }
199
222
  dl.svninfo dt {
200
- font-weight: bold;
223
+ font-weight: bold;
201
224
  }
202
225
 
203
226
  ul.link-list li {
204
- white-space: nowrap;
227
+ white-space: nowrap;
205
228
  }
206
229
  ul.link-list .type {
207
- font-size: 8px;
208
- text-transform: uppercase;
209
- color: white;
210
- background: #969696;
211
- padding: 2px 4px;
212
- -webkit-border-radius: 5px;
230
+ font-size: 8px;
231
+ text-transform: uppercase;
232
+ color: white;
233
+ background: #969696;
234
+ padding: 2px 4px;
235
+ -webkit-border-radius: 5px;
213
236
  }
214
237
 
215
238
  /* @end */
@@ -217,7 +240,7 @@ ul.link-list .type {
217
240
 
218
241
  /* @group Project Metadata Section */
219
242
  #project-metadata {
220
- margin-top: 3em;
243
+ margin-top: 3em;
221
244
  }
222
245
 
223
246
  .file #project-metadata {
@@ -225,200 +248,234 @@ ul.link-list .type {
225
248
  }
226
249
 
227
250
  #project-metadata .section {
228
- border: 1px solid #aaa;
251
+ border: 1px solid #aaa;
229
252
  }
230
253
  #project-metadata h3.section-header {
231
- border-bottom: 1px solid #aaa;
232
- position: relative;
254
+ border-bottom: 1px solid #aaa;
255
+ position: relative;
233
256
  }
234
257
  #project-metadata h3.section-header .search-toggle {
235
- position: absolute;
236
- right: 5px;
258
+ position: absolute;
259
+ right: 5px;
237
260
  }
238
261
 
239
262
 
240
263
  #project-metadata form {
241
- color: #777;
242
- background: #ccc;
243
- padding: 8px 8px 16px;
244
- border-bottom: 1px solid #bbb;
264
+ color: #777;
265
+ background: #ccc;
266
+ padding: 8px 8px 16px;
267
+ border-bottom: 1px solid #bbb;
245
268
  }
246
269
  #project-metadata fieldset {
247
- border: 0;
270
+ border: 0;
248
271
  }
249
272
 
250
273
  #no-class-search-results {
251
- margin: 0 auto 1em;
252
- text-align: center;
253
- font-size: 14px;
254
- font-weight: bold;
255
- color: #aaa;
274
+ margin: 0 auto 1em;
275
+ text-align: center;
276
+ font-size: 14px;
277
+ font-weight: bold;
278
+ color: #aaa;
256
279
  }
257
280
 
258
281
  /* @end */
259
282
 
260
283
 
261
284
  /* @group Documentation Section */
262
- #description {
263
- font-size: 100%;
264
- color: #333;
285
+ .description {
286
+ font-size: 100%;
287
+ color: #333;
265
288
  }
266
289
 
267
- #description p {
268
- margin: 1em 0.4em;
290
+ .description p {
291
+ margin: 1em 0.4em;
269
292
  }
270
293
 
271
- #description li p {
294
+ .description li p {
272
295
  margin: 0;
273
296
  }
274
297
 
275
- #description ul {
276
- margin-left: 1.5em;
298
+ .description ul {
299
+ margin-left: 1.5em;
277
300
  }
278
- #description ul li {
279
- line-height: 1.4em;
301
+ .description ul li {
302
+ line-height: 1.4em;
280
303
  }
281
304
 
282
- #description dl,
305
+ .description dl,
283
306
  #documentation dl {
284
- margin: 8px 1.5em;
285
- border: 1px solid #ccc;
307
+ margin: 8px 1.5em;
308
+ border: 1px solid #ccc;
286
309
  }
287
- #description dl {
288
- font-size: 14px;
310
+ .description dl {
311
+ font-size: 14px;
289
312
  }
290
313
 
291
- #description dt,
314
+ .description dt,
292
315
  #documentation dt {
293
- padding: 2px 4px;
294
- font-weight: bold;
295
- background: #ddd;
316
+ padding: 2px 4px;
317
+ font-weight: bold;
318
+ background: #ddd;
296
319
  }
297
- #description dd,
320
+ .description dd,
298
321
  #documentation dd {
299
- padding: 2px 12px;
322
+ padding: 2px 12px;
300
323
  }
301
- #description dd + dt,
324
+ .description dd + dt,
302
325
  #documentation dd + dt {
303
- margin-top: 0.7em;
326
+ margin-top: 0.7em;
304
327
  }
305
328
 
306
329
  #documentation .section {
307
- font-size: 90%;
330
+ font-size: 90%;
308
331
  }
332
+
333
+ #documentation h2.section-header {
334
+ margin-top: 2em;
335
+ padding: 0.75em 0.5em;
336
+ background: #ccc;
337
+ color: #333;
338
+ font-size: 175%;
339
+ border: 1px solid #bbb;
340
+ -moz-border-radius: 3px;
341
+ -webkit-border-radius: 3px;
342
+ }
343
+
309
344
  #documentation h3.section-header {
310
- margin-top: 2em;
311
- padding: 0.75em 0.5em;
312
- background-color: #dedede;
313
- color: #333;
314
- font-size: 150%;
315
- border: 1px solid #bbb;
316
- -moz-border-radius: 3px;
317
- -webkit-border-radius: 3px;
345
+ margin-top: 2em;
346
+ padding: 0.25em 0.5em;
347
+ background-color: #dedede;
348
+ color: #333;
349
+ font-size: 150%;
350
+ border: 1px solid #bbb;
351
+ -moz-border-radius: 3px;
352
+ -webkit-border-radius: 3px;
318
353
  }
319
354
 
320
355
  #constants-list > dl,
321
356
  #attributes-list > dl {
322
- margin: 1em 0 2em;
323
- border: 0;
357
+ margin: 1em 0 2em;
358
+ border: 0;
324
359
  }
325
360
  #constants-list > dl dt,
326
361
  #attributes-list > dl dt {
327
- padding-left: 0;
328
- font-weight: bold;
329
- font-family: Monaco, "Andale Mono";
330
- background: inherit;
362
+ padding-left: 0;
363
+ font-weight: bold;
364
+ font-family: Monaco, "Andale Mono";
365
+ background: inherit;
331
366
  }
332
367
  #constants-list > dl dt a,
333
368
  #attributes-list > dl dt a {
334
- color: inherit;
369
+ color: inherit;
335
370
  }
336
371
  #constants-list > dl dd,
337
372
  #attributes-list > dl dd {
338
- margin: 0 0 1em 0;
339
- padding: 0;
340
- color: #666;
373
+ margin: 0 0 1em 0;
374
+ padding: 0;
375
+ color: #666;
376
+ }
377
+
378
+ .documentation-section h2 {
379
+ position: relative;
380
+ }
381
+
382
+ .documentation-section h2 a {
383
+ position: absolute;
384
+ top: 8px;
385
+ right: 10px;
386
+ font-size: 12px;
387
+ color: #9b9877;
388
+ visibility: hidden;
389
+ }
390
+
391
+ .documentation-section h2:hover a {
392
+ visibility: visible;
341
393
  }
342
394
 
343
395
  /* @group Method Details */
344
396
 
345
397
  #documentation .method-source-code {
346
- display: none;
398
+ display: none;
347
399
  }
348
400
 
349
401
  #documentation .method-detail {
350
- margin: 0.5em 0;
351
- padding: 0.5em 0;
352
- cursor: pointer;
402
+ margin: 0.5em 0;
403
+ padding: 0.5em 0;
404
+ cursor: pointer;
353
405
  }
354
406
  #documentation .method-detail:hover {
355
- background-color: #f1edba;
407
+ background-color: #f1edba;
356
408
  }
357
409
  #documentation .method-heading {
358
- position: relative;
359
- padding: 2px 4px 0 20px;
360
- font-size: 125%;
361
- font-weight: bold;
362
- color: #333;
363
- background: url(images/brick.png) no-repeat left bottom;
410
+ position: relative;
411
+ padding: 2px 4px 0 20px;
412
+ font-size: 125%;
413
+ font-weight: bold;
414
+ color: #333;
415
+ background: url(images/brick.png) no-repeat left bottom;
364
416
  }
365
417
  #documentation .method-heading :link,
366
418
  #documentation .method-heading :visited {
367
- color: inherit;
419
+ color: inherit;
368
420
  }
369
421
  #documentation .method-click-advice {
370
- position: absolute;
371
- top: 2px;
372
- right: 5px;
373
- font-size: 10px;
374
- color: #9b9877;
375
- visibility: hidden;
376
- padding-right: 20px;
377
- line-height: 20px;
378
- background: url(images/zoom.png) no-repeat right top;
422
+ position: absolute;
423
+ top: 2px;
424
+ right: 5px;
425
+ font-size: 10px;
426
+ color: #9b9877;
427
+ visibility: hidden;
428
+ padding-right: 20px;
429
+ line-height: 20px;
430
+ background: url(images/zoom.png) no-repeat right top;
379
431
  }
380
432
  #documentation .method-detail:hover .method-click-advice {
381
- visibility: visible;
433
+ visibility: visible;
382
434
  }
383
435
 
384
436
  #documentation .method-alias .method-heading {
385
- color: #666;
386
- background: url(images/brick_link.png) no-repeat left bottom;
437
+ color: #666;
438
+ background: url(images/brick_link.png) no-repeat left bottom;
387
439
  }
388
440
 
389
441
  #documentation .method-description,
390
442
  #documentation .aliases {
391
- margin: 0 20px;
392
- line-height: 1.2em;
393
- color: #666;
443
+ margin: 0 20px;
444
+ color: #666;
394
445
  }
446
+
447
+ #documentation .method-description p,
448
+ #documentation .aliases p {
449
+ line-height: 1.2em;
450
+ }
451
+
395
452
  #documentation .aliases {
396
- padding-top: 4px;
397
- font-style: italic;
398
- cursor: default;
453
+ padding-top: 4px;
454
+ font-style: italic;
455
+ cursor: default;
399
456
  }
400
457
  #documentation .method-description p {
401
- padding: 0;
458
+ padding: 0;
402
459
  }
403
460
  #documentation .method-description p + p {
404
- margin-bottom: 0.5em;
461
+ margin-bottom: 0.5em;
405
462
  }
406
463
  #documentation .method-description ul {
407
464
  margin-left: 1.5em;
408
465
  }
409
466
 
410
467
  #documentation .attribute-method-heading {
411
- background: url(images/tag_green.png) no-repeat left bottom;
468
+ background: url(images/tag_green.png) no-repeat left bottom;
412
469
  }
413
470
  #documentation #attribute-method-details .method-detail:hover {
414
- background-color: transparent;
415
- cursor: default;
471
+ background-color: transparent;
472
+ cursor: default;
416
473
  }
417
474
  #documentation .attribute-access-type {
418
- font-size: 60%;
419
- text-transform: uppercase;
420
- vertical-align: super;
421
- padding: 0 2px;
475
+ font-size: 60%;
476
+ text-transform: uppercase;
477
+ vertical-align: super;
478
+ padding: 0 2px;
422
479
  }
423
480
  /* @end */
424
481
 
@@ -429,19 +486,19 @@ ul.link-list .type {
429
486
  /* @group Source Code */
430
487
 
431
488
  div.method-source-code {
432
- background: #262626;
433
- color: #efefef;
434
- margin: 1em;
435
- padding: 0.5em;
436
- border: 1px dashed #999;
437
- overflow: hidden;
489
+ background: #262626;
490
+ color: #efefef;
491
+ margin: 1em;
492
+ padding: 0.5em;
493
+ border: 1px dashed #999;
494
+ overflow: hidden;
438
495
  }
439
496
 
440
497
  div.method-source-code pre {
441
- background: inherit;
442
- padding: 0;
443
- color: white;
444
- overflow: auto;
498
+ background: inherit;
499
+ padding: 0;
500
+ color: white;
501
+ overflow: auto;
445
502
  }
446
503
 
447
504
  /* @group Ruby keyword styles */
@@ -467,51 +524,51 @@ div.method-source-code pre {
467
524
  }
468
525
 
469
526
  .file-popup dl {
470
- font-size: 80%;
471
- padding: 0.75em;
472
- background-color: #dedede;
473
- color: #333;
474
- border: 1px solid #bbb;
475
- -moz-border-radius: 3px;
476
- -webkit-border-radius: 3px;
527
+ font-size: 80%;
528
+ padding: 0.75em;
529
+ background-color: #dedede;
530
+ color: #333;
531
+ border: 1px solid #bbb;
532
+ -moz-border-radius: 3px;
533
+ -webkit-border-radius: 3px;
477
534
  }
478
535
  .file dt {
479
- font-weight: bold;
480
- padding-left: 22px;
481
- line-height: 20px;
482
- background: url(images/page_white_width.png) no-repeat left top;
536
+ font-weight: bold;
537
+ padding-left: 22px;
538
+ line-height: 20px;
539
+ background: url(images/page_white_width.png) no-repeat left top;
483
540
  }
484
541
  .file dt.modified-date {
485
- background: url(images/date.png) no-repeat left top;
542
+ background: url(images/date.png) no-repeat left top;
486
543
  }
487
544
  .file dt.requires {
488
- background: url(images/plugin.png) no-repeat left top;
545
+ background: url(images/plugin.png) no-repeat left top;
489
546
  }
490
547
  .file dt.scs-url {
491
- background: url(images/wrench.png) no-repeat left top;
548
+ background: url(images/wrench.png) no-repeat left top;
492
549
  }
493
550
 
494
551
  .file dl dd {
495
- margin: 0 0 1em 0;
552
+ margin: 0 0 1em 0;
496
553
  }
497
554
  .file #metadata dl dd ul {
498
- list-style: circle;
499
- margin-left: 20px;
500
- padding-top: 0;
555
+ list-style: circle;
556
+ margin-left: 20px;
557
+ padding-top: 0;
501
558
  }
502
559
  .file #metadata dl dd ul li {
503
560
  }
504
561
 
505
562
 
506
563
  .file h2 {
507
- margin-top: 2em;
508
- padding: 0.75em 0.5em;
509
- background-color: #dedede;
510
- color: #333;
511
- font-size: 120%;
512
- border: 1px solid #bbb;
513
- -moz-border-radius: 3px;
514
- -webkit-border-radius: 3px;
564
+ margin-top: 2em;
565
+ padding: 0.75em 0.5em;
566
+ background-color: #dedede;
567
+ color: #333;
568
+ font-size: 120%;
569
+ border: 1px solid #bbb;
570
+ -moz-border-radius: 3px;
571
+ -webkit-border-radius: 3px;
515
572
  }
516
573
 
517
574
  /* @end */
@@ -521,13 +578,13 @@ div.method-source-code pre {
521
578
 
522
579
  /* @group ThickBox Styles */
523
580
  #TB_window {
524
- font: 12px Arial, Helvetica, sans-serif;
525
- color: #333333;
581
+ font: 12px Arial, Helvetica, sans-serif;
582
+ color: #333333;
526
583
  }
527
584
 
528
585
  #TB_secondLine {
529
- font: 10px Arial, Helvetica, sans-serif;
530
- color:#666666;
586
+ font: 10px Arial, Helvetica, sans-serif;
587
+ color:#666666;
531
588
  }
532
589
 
533
590
  #TB_window :link,
@@ -540,147 +597,147 @@ div.method-source-code pre {
540
597
  #TB_window :visited:focus { color: #666666; }
541
598
 
542
599
  #TB_overlay {
543
- position: fixed;
544
- z-index:100;
545
- top: 0px;
546
- left: 0px;
547
- height:100%;
548
- width:100%;
600
+ position: fixed;
601
+ z-index:100;
602
+ top: 0px;
603
+ left: 0px;
604
+ height:100%;
605
+ width:100%;
549
606
  }
550
607
 
551
608
  .TB_overlayMacFFBGHack {background: url(images/macFFBgHack.png) repeat;}
552
609
  .TB_overlayBG {
553
- background-color:#000;
554
- filter:alpha(opacity=75);
555
- -moz-opacity: 0.75;
556
- opacity: 0.75;
610
+ background-color:#000;
611
+ filter:alpha(opacity=75);
612
+ -moz-opacity: 0.75;
613
+ opacity: 0.75;
557
614
  }
558
615
 
559
616
  * html #TB_overlay { /* ie6 hack */
560
- position: absolute;
561
- height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
617
+ position: absolute;
618
+ height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
562
619
  }
563
620
 
564
621
  #TB_window {
565
- position: fixed;
566
- background: #ffffff;
567
- z-index: 102;
568
- color:#000000;
569
- display:none;
570
- border: 4px solid #525252;
571
- text-align:left;
572
- top:50%;
573
- left:50%;
622
+ position: fixed;
623
+ background: #ffffff;
624
+ z-index: 102;
625
+ color:#000000;
626
+ display:none;
627
+ border: 4px solid #525252;
628
+ text-align:left;
629
+ top:50%;
630
+ left:50%;
574
631
  }
575
632
 
576
633
  * html #TB_window { /* ie6 hack */
577
- position: absolute;
578
- margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
634
+ position: absolute;
635
+ margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
579
636
  }
580
637
 
581
638
  #TB_window img#TB_Image {
582
- display:block;
583
- margin: 15px 0 0 15px;
584
- border-right: 1px solid #ccc;
585
- border-bottom: 1px solid #ccc;
586
- border-top: 1px solid #666;
587
- border-left: 1px solid #666;
639
+ display:block;
640
+ margin: 15px 0 0 15px;
641
+ border-right: 1px solid #ccc;
642
+ border-bottom: 1px solid #ccc;
643
+ border-top: 1px solid #666;
644
+ border-left: 1px solid #666;
588
645
  }
589
646
 
590
647
  #TB_caption{
591
- height:25px;
592
- padding:7px 30px 10px 25px;
593
- float:left;
648
+ height:25px;
649
+ padding:7px 30px 10px 25px;
650
+ float:left;
594
651
  }
595
652
 
596
653
  #TB_closeWindow{
597
- height:25px;
598
- padding:11px 25px 10px 0;
599
- float:right;
654
+ height:25px;
655
+ padding:11px 25px 10px 0;
656
+ float:right;
600
657
  }
601
658
 
602
659
  #TB_closeAjaxWindow{
603
- padding:7px 10px 5px 0;
604
- margin-bottom:1px;
605
- text-align:right;
606
- float:right;
660
+ padding:7px 10px 5px 0;
661
+ margin-bottom:1px;
662
+ text-align:right;
663
+ float:right;
607
664
  }
608
665
 
609
666
  #TB_ajaxWindowTitle{
610
- float:left;
611
- padding:7px 0 5px 10px;
612
- margin-bottom:1px;
613
- font-size: 22px;
667
+ float:left;
668
+ padding:7px 0 5px 10px;
669
+ margin-bottom:1px;
670
+ font-size: 22px;
614
671
  }
615
672
 
616
673
  #TB_title{
617
- background-color: #6C8C22;
618
- color: #dedede;
619
- height:40px;
674
+ background-color: #6C8C22;
675
+ color: #dedede;
676
+ height:40px;
620
677
  }
621
678
  #TB_title :link,
622
679
  #TB_title :visited {
623
- color: white !important;
624
- border-bottom: 1px dotted #dedede;
680
+ color: white !important;
681
+ border-bottom: 1px dotted #dedede;
625
682
  }
626
683
 
627
684
  #TB_ajaxContent{
628
- clear:both;
629
- padding:2px 15px 15px 15px;
630
- overflow:auto;
631
- text-align:left;
632
- line-height:1.4em;
685
+ clear:both;
686
+ padding:2px 15px 15px 15px;
687
+ overflow:auto;
688
+ text-align:left;
689
+ line-height:1.4em;
633
690
  }
634
691
 
635
692
  #TB_ajaxContent.TB_modal{
636
- padding:15px;
693
+ padding:15px;
637
694
  }
638
695
 
639
696
  #TB_ajaxContent p{
640
- padding:5px 0px 5px 0px;
697
+ padding:5px 0px 5px 0px;
641
698
  }
642
699
 
643
700
  #TB_load{
644
- position: fixed;
645
- display:none;
646
- height:13px;
647
- width:208px;
648
- z-index:103;
649
- top: 50%;
650
- left: 50%;
651
- margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
701
+ position: fixed;
702
+ display:none;
703
+ height:13px;
704
+ width:208px;
705
+ z-index:103;
706
+ top: 50%;
707
+ left: 50%;
708
+ margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
652
709
  }
653
710
 
654
711
  * html #TB_load { /* ie6 hack */
655
- position: absolute;
656
- margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
712
+ position: absolute;
713
+ margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
657
714
  }
658
715
 
659
716
  #TB_HideSelect{
660
- z-index:99;
661
- position:fixed;
662
- top: 0;
663
- left: 0;
664
- background-color:#fff;
665
- border:none;
666
- filter:alpha(opacity=0);
667
- -moz-opacity: 0;
668
- opacity: 0;
669
- height:100%;
670
- width:100%;
717
+ z-index:99;
718
+ position:fixed;
719
+ top: 0;
720
+ left: 0;
721
+ background-color:#fff;
722
+ border:none;
723
+ filter:alpha(opacity=0);
724
+ -moz-opacity: 0;
725
+ opacity: 0;
726
+ height:100%;
727
+ width:100%;
671
728
  }
672
729
 
673
730
  * html #TB_HideSelect { /* ie6 hack */
674
- position: absolute;
675
- height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
731
+ position: absolute;
732
+ height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
676
733
  }
677
734
 
678
735
  #TB_iframeContent{
679
- clear:both;
680
- border:none;
681
- margin-bottom:-1px;
682
- margin-top:1px;
683
- _margin-bottom:1px;
736
+ clear:both;
737
+ border:none;
738
+ margin-bottom:-1px;
739
+ margin-top:1px;
740
+ _margin-bottom:1px;
684
741
  }
685
742
 
686
743
  /* @end */
@@ -688,17 +745,17 @@ margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = d
688
745
  /* @group Debugging Section */
689
746
 
690
747
  #debugging-toggle {
691
- text-align: center;
748
+ text-align: center;
692
749
  }
693
750
  #debugging-toggle img {
694
- cursor: pointer;
751
+ cursor: pointer;
695
752
  }
696
753
 
697
754
  #rdoc-debugging-section-dump {
698
- display: none;
699
- margin: 0 2em 2em;
700
- background: #ccc;
701
- border: 1px solid #999;
755
+ display: none;
756
+ margin: 0 2em 2em;
757
+ background: #ccc;
758
+ border: 1px solid #999;
702
759
  }
703
760
 
704
761