appscale-tools 1.6.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 (114) hide show
  1. data/LICENSE +37 -0
  2. data/README +17 -0
  3. data/bin/appscale-add-keypair +15 -0
  4. data/bin/appscale-describe-instances +16 -0
  5. data/bin/appscale-remove-app +13 -0
  6. data/bin/appscale-reset-pwd +13 -0
  7. data/bin/appscale-run-instances +15 -0
  8. data/bin/appscale-terminate-instances +14 -0
  9. data/bin/appscale-upload-app +13 -0
  10. data/doc/AdvancedNode.html +163 -0
  11. data/doc/AppControllerClient.html +831 -0
  12. data/doc/AppEngineConfigException.html +165 -0
  13. data/doc/AppScaleException.html +165 -0
  14. data/doc/AppScaleTools.html +768 -0
  15. data/doc/BadCommandLineArgException.html +166 -0
  16. data/doc/BadConfigurationException.html +166 -0
  17. data/doc/CommonFunctions.html +2559 -0
  18. data/doc/EncryptionHelper.html +332 -0
  19. data/doc/GodInterface.html +443 -0
  20. data/doc/InfrastructureException.html +166 -0
  21. data/doc/Node.html +470 -0
  22. data/doc/NodeLayout.html +1297 -0
  23. data/doc/Object.html +539 -0
  24. data/doc/ParseArgs.html +268 -0
  25. data/doc/RemoteLogging.html +268 -0
  26. data/doc/SimpleNode.html +163 -0
  27. data/doc/UsageText.html +1204 -0
  28. data/doc/UserAppClient.html +993 -0
  29. data/doc/VMTools.html +1365 -0
  30. data/doc/bin/appscale-add-keypair.html +56 -0
  31. data/doc/bin/appscale-describe-instances.html +56 -0
  32. data/doc/bin/appscale-remove-app.html +56 -0
  33. data/doc/bin/appscale-reset-pwd.html +56 -0
  34. data/doc/bin/appscale-run-instances.html +56 -0
  35. data/doc/bin/appscale-terminate-instances.html +56 -0
  36. data/doc/bin/appscale-upload-app.html +56 -0
  37. data/doc/created.rid +21 -0
  38. data/doc/images/add.png +0 -0
  39. data/doc/images/brick.png +0 -0
  40. data/doc/images/brick_link.png +0 -0
  41. data/doc/images/bug.png +0 -0
  42. data/doc/images/bullet_black.png +0 -0
  43. data/doc/images/bullet_toggle_minus.png +0 -0
  44. data/doc/images/bullet_toggle_plus.png +0 -0
  45. data/doc/images/date.png +0 -0
  46. data/doc/images/delete.png +0 -0
  47. data/doc/images/find.png +0 -0
  48. data/doc/images/loadingAnimation.gif +0 -0
  49. data/doc/images/macFFBgHack.png +0 -0
  50. data/doc/images/package.png +0 -0
  51. data/doc/images/page_green.png +0 -0
  52. data/doc/images/page_white_text.png +0 -0
  53. data/doc/images/page_white_width.png +0 -0
  54. data/doc/images/plugin.png +0 -0
  55. data/doc/images/ruby.png +0 -0
  56. data/doc/images/tag_blue.png +0 -0
  57. data/doc/images/tag_green.png +0 -0
  58. data/doc/images/transparent.png +0 -0
  59. data/doc/images/wrench.png +0 -0
  60. data/doc/images/wrench_orange.png +0 -0
  61. data/doc/images/zoom.png +0 -0
  62. data/doc/index.html +116 -0
  63. data/doc/js/darkfish.js +153 -0
  64. data/doc/js/jquery.js +18 -0
  65. data/doc/js/navigation.js +142 -0
  66. data/doc/js/quicksearch.js +114 -0
  67. data/doc/js/search.js +94 -0
  68. data/doc/js/search_index.js +1 -0
  69. data/doc/js/searcher.js +228 -0
  70. data/doc/js/thickbox-compressed.js +10 -0
  71. data/doc/lib/app_controller_client_rb.html +60 -0
  72. data/doc/lib/appscale_tools_rb.html +88 -0
  73. data/doc/lib/common_functions_rb.html +78 -0
  74. data/doc/lib/custom_exceptions_rb.html +54 -0
  75. data/doc/lib/encryption_helper_rb.html +60 -0
  76. data/doc/lib/godinterface_rb.html +52 -0
  77. data/doc/lib/node_layout_rb.html +55 -0
  78. data/doc/lib/parse_args_rb.html +58 -0
  79. data/doc/lib/remote_log_rb.html +58 -0
  80. data/doc/lib/sshcopyid.html +174 -0
  81. data/doc/lib/usage_text_rb.html +58 -0
  82. data/doc/lib/user_app_client_rb.html +62 -0
  83. data/doc/lib/vm_tools_rb.html +62 -0
  84. data/doc/table_of_contents.html +496 -0
  85. data/lib/app_controller_client.rb +181 -0
  86. data/lib/appscale_tools.rb +403 -0
  87. data/lib/common_functions.rb +1467 -0
  88. data/lib/custom_exceptions.rb +25 -0
  89. data/lib/encryption_helper.rb +86 -0
  90. data/lib/godinterface.rb +152 -0
  91. data/lib/node_layout.rb +665 -0
  92. data/lib/parse_args.rb +415 -0
  93. data/lib/remote_log.rb +46 -0
  94. data/lib/sshcopyid +65 -0
  95. data/lib/usage_text.rb +144 -0
  96. data/lib/user_app_client.rb +245 -0
  97. data/lib/vm_tools.rb +549 -0
  98. data/test/tc_app_controller_client.rb +10 -0
  99. data/test/tc_appscale_add_keypair.rb +44 -0
  100. data/test/tc_appscale_describe_instances.rb +69 -0
  101. data/test/tc_appscale_remove_app.rb +128 -0
  102. data/test/tc_appscale_reset_pwd.rb +156 -0
  103. data/test/tc_appscale_run_instances.rb +48 -0
  104. data/test/tc_appscale_terminate_instances.rb +104 -0
  105. data/test/tc_appscale_upload_app.rb +166 -0
  106. data/test/tc_common_functions.rb +56 -0
  107. data/test/tc_encryption_helper.rb +10 -0
  108. data/test/tc_god_interface.rb +10 -0
  109. data/test/tc_node_layout.rb +93 -0
  110. data/test/tc_parse_args.rb +160 -0
  111. data/test/tc_user_app_client.rb +10 -0
  112. data/test/tc_vm_tools.rb +10 -0
  113. data/test/ts_all.rb +20 -0
  114. metadata +211 -0
data/doc/Object.html ADDED
@@ -0,0 +1,539 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class Object - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="./index.html">Home</a>
28
+ <a href="./table_of_contents.html#classes">Classes</a>
29
+ <a href="./table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/common_functions.rb
51
+ <li>lib/app_controller_client.rb
52
+ <li>lib/vm_tools.rb
53
+ <li>lib/user_app_client.rb
54
+ <li>lib/node_layout.rb
55
+ <li>lib/godinterface.rb
56
+ <li>lib/parse_args.rb
57
+ </ul>
58
+ </nav>
59
+
60
+
61
+ </div>
62
+
63
+ <div id="class-metadata">
64
+
65
+ <nav id="parent-class-section" class="section">
66
+ <h3 class="section-header">Parent</h3>
67
+
68
+ <p class="link">
69
+
70
+ </nav>
71
+
72
+
73
+
74
+ </div>
75
+
76
+ <div id="project-metadata">
77
+ <nav id="fileindex-section" class="section project-section">
78
+ <h3 class="section-header">Pages</h3>
79
+
80
+ <ul>
81
+
82
+ <li class="file"><a href="./lib/sshcopyid.html">sshcopyid</a>
83
+
84
+ </ul>
85
+ </nav>
86
+
87
+ <nav id="classindex-section" class="section project-section">
88
+ <h3 class="section-header">Class and Module Index</h3>
89
+
90
+ <ul class="link-list">
91
+
92
+ <li><a href="./AdvancedNode.html">AdvancedNode</a>
93
+
94
+ <li><a href="./AppControllerClient.html">AppControllerClient</a>
95
+
96
+ <li><a href="./AppEngineConfigException.html">AppEngineConfigException</a>
97
+
98
+ <li><a href="./AppScaleException.html">AppScaleException</a>
99
+
100
+ <li><a href="./AppScaleTools.html">AppScaleTools</a>
101
+
102
+ <li><a href="./BadCommandLineArgException.html">BadCommandLineArgException</a>
103
+
104
+ <li><a href="./BadConfigurationException.html">BadConfigurationException</a>
105
+
106
+ <li><a href="./CommonFunctions.html">CommonFunctions</a>
107
+
108
+ <li><a href="./EncryptionHelper.html">EncryptionHelper</a>
109
+
110
+ <li><a href="./GodInterface.html">GodInterface</a>
111
+
112
+ <li><a href="./InfrastructureException.html">InfrastructureException</a>
113
+
114
+ <li><a href="./Node.html">Node</a>
115
+
116
+ <li><a href="./NodeLayout.html">NodeLayout</a>
117
+
118
+ <li><a href="./Object.html">Object</a>
119
+
120
+ <li><a href="./ParseArgs.html">ParseArgs</a>
121
+
122
+ <li><a href="./RemoteLogging.html">RemoteLogging</a>
123
+
124
+ <li><a href="./SimpleNode.html">SimpleNode</a>
125
+
126
+ <li><a href="./UsageText.html">UsageText</a>
127
+
128
+ <li><a href="./UserAppClient.html">UserAppClient</a>
129
+
130
+ <li><a href="./VMTools.html">VMTools</a>
131
+
132
+ </ul>
133
+ </nav>
134
+
135
+ </div>
136
+ </nav>
137
+
138
+ <div id="documentation">
139
+ <h1 class="class">class Object</h1>
140
+
141
+ <div id="description" class="description">
142
+
143
+ </div><!-- description -->
144
+
145
+
146
+
147
+
148
+ <section id="5Buntitled-5D" class="documentation-section">
149
+
150
+
151
+
152
+
153
+
154
+ <!-- Constants -->
155
+ <section id="constants-list" class="section">
156
+ <h3 class="section-header">Constants</h3>
157
+ <dl>
158
+
159
+ <dt id="ABORT_ON_FAIL">ABORT_ON_FAIL
160
+
161
+ <dd class="description">
162
+
163
+
164
+ <dt id="ADMIN_CAPABILITIES">ADMIN_CAPABILITIES
165
+
166
+ <dd class="description">
167
+
168
+
169
+ <dt id="AS_VERSION">AS_VERSION
170
+
171
+ <dd class="description">
172
+
173
+
174
+ <dt id="BACKUP_NEPTUNE_INFO_EXISTS_MSG">BACKUP_NEPTUNE_INFO_EXISTS_MSG
175
+
176
+ <dd class="description">
177
+
178
+
179
+ <dt id="BACKUP_TAR_EXISTS_MSG">BACKUP_TAR_EXISTS_MSG
180
+
181
+ <dd class="description">
182
+
183
+
184
+ <dt id="CLOUDY_CREDS">CLOUDY_CREDS
185
+
186
+ <dd class="description">
187
+
188
+
189
+ <dt id="CONFIG_FILE_NOT_FOUND">CONFIG_FILE_NOT_FOUND
190
+
191
+ <dd class="description">
192
+
193
+
194
+ <dt id="DEFAULT_DATASTORE">DEFAULT_DATASTORE
195
+
196
+ <dd class="description">
197
+
198
+
199
+ <dt id="DEFAULT_NUM_NODES">DEFAULT_NUM_NODES
200
+
201
+ <dd class="description">
202
+
203
+
204
+ <dt id="DEFAULT_PASSWORD">DEFAULT_PASSWORD
205
+
206
+ <dd class="description">
207
+
208
+
209
+ <dt id="DEFAULT_USERNAME">DEFAULT_USERNAME
210
+
211
+ <dd class="description"><p>The username and password that will be used as the cloud administrator’s
212
+ credentials if the –test flag are used, which should only be used when
213
+ developing AppScale (and not in production environments).</p>
214
+
215
+
216
+ <dt id="DJINN_SERVER_DIED_MSG">DJINN_SERVER_DIED_MSG
217
+
218
+ <dd class="description">
219
+
220
+
221
+ <dt id="DUPLICATE_IPS">DUPLICATE_IPS
222
+
223
+ <dd class="description">
224
+
225
+
226
+ <dt id="EC2_ENVIRONMENT_VARIABLES">EC2_ENVIRONMENT_VARIABLES
227
+
228
+ <dd class="description"><p>When running over a cloud infrastructure, the user must set the following
229
+ environment variables</p>
230
+
231
+
232
+ <dt id="EC2_IPS_MISSING_MSG">EC2_IPS_MISSING_MSG
233
+
234
+ <dd class="description">
235
+
236
+
237
+ <dt id="EC2_USAGE_MSG">EC2_USAGE_MSG
238
+
239
+ <dd class="description">
240
+
241
+
242
+ <dt id="EMAIL_REGEX">EMAIL_REGEX
243
+
244
+ <dd class="description">
245
+
246
+
247
+ <dt id="FILE_FLAG_NOT_VALID_MSG">FILE_FLAG_NOT_VALID_MSG
248
+
249
+ <dd class="description">
250
+
251
+
252
+ <dt id="FILE_REGEX">FILE_REGEX
253
+
254
+ <dd class="description">
255
+
256
+
257
+ <dt id="FQDN_REGEX">FQDN_REGEX
258
+
259
+ <dd class="description">
260
+
261
+
262
+ <dt id="GOD_PORT">GOD_PORT
263
+
264
+ <dd class="description">
265
+
266
+
267
+ <dt id="INFINITY">INFINITY
268
+
269
+ <dd class="description"><p>Some operations use an infinite timeout, and while -1 or 1.0/0 work in
270
+ older versions of Ruby 1.8.7 (default on Ubuntu Lucid and before), they
271
+ don’t work in newer versions of Ruby 1.8.7 and Ruby 1.9. Instead, just
272
+ use a large number, which will work on both.</p>
273
+
274
+
275
+ <dt id="INFRASTRUCTURE_FLAG_NOT_IN_SET_MSG">INFRASTRUCTURE_FLAG_NOT_IN_SET_MSG
276
+
277
+ <dd class="description">
278
+
279
+
280
+ <dt id="INPUT_YAML_REQUIRED">INPUT_YAML_REQUIRED
281
+
282
+ <dd class="description">
283
+
284
+
285
+ <dt id="INSTANCE_FLAG_NOT_IN_SET_MSG">INSTANCE_FLAG_NOT_IN_SET_MSG
286
+
287
+ <dd class="description">
288
+
289
+
290
+ <dt id="IPS_FLAG_NOT_A_YAML_MSG">IPS_FLAG_NOT_A_YAML_MSG
291
+
292
+ <dd class="description">
293
+
294
+
295
+ <dt id="IP_OR_FQDN">IP_OR_FQDN
296
+
297
+ <dd class="description">
298
+
299
+
300
+ <dt id="IP_REGEX">IP_REGEX
301
+
302
+ <dd class="description"><p>The regular expressions to use to find the public and private IPs (or FQDNs
303
+ in case of EC2).</p>
304
+
305
+
306
+ <dt id="JAVA_CONFIG">JAVA_CONFIG
307
+
308
+ <dd class="description">
309
+
310
+
311
+ <dt id="LOGS_VERBOSE">LOGS_VERBOSE
312
+
313
+ <dd class="description"><p>A constant that indicates that verbose logging should be produced.</p>
314
+
315
+
316
+ <dt id="MALFORMED_YAML">MALFORMED_YAML
317
+
318
+ <dd class="description">
319
+
320
+
321
+ <dt id="MAX_FILE_SIZE">MAX_FILE_SIZE
322
+
323
+ <dd class="description">
324
+
325
+
326
+ <dt id="MAX_FLAG_NOT_A_NUM_MSG">MAX_FLAG_NOT_A_NUM_MSG
327
+
328
+ <dd class="description">
329
+
330
+
331
+ <dt id="MAX_FLAG_NOT_POSITIVE_MSG">MAX_FLAG_NOT_POSITIVE_MSG
332
+
333
+ <dd class="description">
334
+
335
+
336
+ <dt id="MAX_SMALLER_THAN_MIN_MSG">MAX_SMALLER_THAN_MIN_MSG
337
+
338
+ <dd class="description">
339
+
340
+
341
+ <dt id="MAX_VM_CREATION_TIME">MAX_VM_CREATION_TIME
342
+
343
+ <dd class="description"><p>The maximum amount of time we should wait for the first node in the system
344
+ to go from ‘pending’ to ‘running’ and acquire a public IP. Our
345
+ current VM size is about 10GB, so this means that in Eucalyptus it could
346
+ take up to 30 minutes to start if the image wasn’t cached.</p>
347
+
348
+
349
+ <dt id="MIN_FLAG_NOT_A_NUM_MSG">MIN_FLAG_NOT_A_NUM_MSG
350
+
351
+ <dd class="description">
352
+
353
+
354
+ <dt id="MIN_FLAG_NOT_POSITIVE_MSG">MIN_FLAG_NOT_POSITIVE_MSG
355
+
356
+ <dd class="description">
357
+
358
+
359
+ <dt id="NODE_ID_REGEX">NODE_ID_REGEX
360
+
361
+ <dd class="description">
362
+
363
+
364
+ <dt id="NO_APP_FOUND">NO_APP_FOUND
365
+
366
+ <dd class="description">
367
+
368
+
369
+ <dt id="NO_CONFIG_FILE">NO_CONFIG_FILE
370
+
371
+ <dd class="description">
372
+
373
+
374
+ <dt id="NO_CONTROLLER">NO_CONTROLLER
375
+
376
+ <dd class="description">
377
+
378
+
379
+ <dt id="NO_INPUT_YAML_REQUIRES_MAX_IMAGES">NO_INPUT_YAML_REQUIRES_MAX_IMAGES
380
+
381
+ <dd class="description">
382
+
383
+
384
+ <dt id="NO_INPUT_YAML_REQUIRES_MIN_IMAGES">NO_INPUT_YAML_REQUIRES_MIN_IMAGES
385
+
386
+ <dd class="description">
387
+
388
+
389
+ <dt id="NO_MIN_OR_MAX_WITH_IPS">NO_MIN_OR_MAX_WITH_IPS
390
+
391
+ <dd class="description">
392
+
393
+
394
+ <dt id="NO_SSH_KEY_FOUND">NO_SSH_KEY_FOUND
395
+
396
+ <dd class="description">
397
+
398
+
399
+ <dt id="NO_TIMEOUT">NO_TIMEOUT
400
+
401
+ <dd class="description">
402
+
403
+
404
+ <dt id="ONLY_ONE_CONTROLLER">ONLY_ONE_CONTROLLER
405
+
406
+ <dd class="description">
407
+
408
+
409
+ <dt id="PASSWORD_REGEX">PASSWORD_REGEX
410
+
411
+ <dd class="description">
412
+
413
+
414
+ <dt id="POS_NUM_REGEX">POS_NUM_REGEX
415
+
416
+ <dd class="description">
417
+
418
+
419
+ <dt id="PYTHON_CONFIG">PYTHON_CONFIG
420
+
421
+ <dd class="description">
422
+
423
+
424
+ <dt id="REQUIRED_EC2_CREDS_FOR_HYBRID">REQUIRED_EC2_CREDS_FOR_HYBRID
425
+
426
+ <dd class="description"><p>When using EC2 in a hybrid cloud deployment, the user must set the
427
+ following environment variables (prefixed by CLOUDX_, where X is an
428
+ integer)</p>
429
+
430
+
431
+ <dt id="REQUIRED_EUCA_CREDS_FOR_HYBRID">REQUIRED_EUCA_CREDS_FOR_HYBRID
432
+
433
+ <dd class="description"><p>When using Eucalyptus in a hybrid cloud deployment, the user must set the
434
+ following environment variables (prefixed by CLOUDX_, where X is an
435
+ integer)</p>
436
+
437
+
438
+ <dt id="RESTORE_NEPTUNE_INFO_NOT_EXISTS_MSG">RESTORE_NEPTUNE_INFO_NOT_EXISTS_MSG
439
+
440
+ <dd class="description">
441
+
442
+
443
+ <dt id="RESTORE_TAR_NOT_EXISTS_MSG">RESTORE_TAR_NOT_EXISTS_MSG
444
+
445
+ <dd class="description">
446
+
447
+
448
+ <dt id="RETRY_ON_FAIL">RETRY_ON_FAIL
449
+
450
+ <dd class="description">
451
+
452
+
453
+ <dt id="RW_REQUIRES_VOLDEMORT_MSG">RW_REQUIRES_VOLDEMORT_MSG
454
+
455
+ <dd class="description">
456
+
457
+
458
+ <dt id="SLEEP_TIME">SLEEP_TIME
459
+
460
+ <dd class="description"><p>The amount of time to sleep between invocations of ec2-describe-instances
461
+ when starting up the first node in the system. This should definitely not
462
+ be lower than 5 seconds, as Eucalyptus 2.0.3 or newer will interpret it as
463
+ a possible replay attack.</p>
464
+
465
+
466
+ <dt id="SSH_OPTIONS">SSH_OPTIONS
467
+
468
+ <dd class="description"><p>When we try to ssh to other machines, we don’t want to be asked for a
469
+ password (since we always should have the right SSH key present), and we
470
+ don’t want to be asked to confirm the host’s fingerprint, so set the
471
+ options for that here.</p>
472
+
473
+
474
+ <dt id="TABLE_FLAG_NOT_IN_SET_MSG">TABLE_FLAG_NOT_IN_SET_MSG
475
+
476
+ <dd class="description">
477
+
478
+
479
+ <dt id="TAR_REGEX">TAR_REGEX
480
+
481
+ <dd class="description">
482
+
483
+
484
+ <dt id="USED_SIMPLE_AND_ADVANCED_KEYS">USED_SIMPLE_AND_ADVANCED_KEYS
485
+
486
+ <dd class="description"><p>Programmer: Jonathan Kupferman Updated by Chris Bunch to add hybrid cloud
487
+ support</p>
488
+
489
+
490
+ <dt id="VALID_CLOUD_TYPES">VALID_CLOUD_TYPES
491
+
492
+ <dd class="description">
493
+
494
+
495
+ <dt id="VALID_ROLES">VALID_ROLES
496
+
497
+ <dd class="description">
498
+
499
+
500
+ <dt id="VALID_TABLE_TYPES">VALID_TABLE_TYPES
501
+
502
+ <dd class="description"><p>A list of the databases that AppScale nodes can run, and a list of the
503
+ cloud infrastructures that we can run over.</p>
504
+
505
+
506
+ <dt id="VER_NUM">VER_NUM
507
+
508
+ <dd class="description">
509
+
510
+
511
+ <dt id="YAML_CONTROL_MSG">YAML_CONTROL_MSG
512
+
513
+ <dd class="description">
514
+
515
+
516
+ <dt id="YAML_REGEX">YAML_REGEX
517
+
518
+ <dd class="description">
519
+
520
+
521
+ </dl>
522
+ </section>
523
+
524
+
525
+
526
+
527
+ <!-- Methods -->
528
+
529
+ </section><!-- 5Buntitled-5D -->
530
+
531
+ </div><!-- documentation -->
532
+
533
+
534
+ <footer id="validator-badges">
535
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
536
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
537
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
538
+ </footer>
539
+