nucleon 0.1.19 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (159) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -0
  3. data/Gemfile.lock +1 -0
  4. data/TODO.rdoc +0 -3
  5. data/VERSION +1 -1
  6. data/bin/nucleon +19 -0
  7. data/lib/core/config.rb +11 -7
  8. data/lib/core/environment.rb +338 -0
  9. data/lib/core/facade.rb +150 -98
  10. data/lib/core/manager.rb +160 -249
  11. data/lib/core/mixin/action/project.rb +2 -2
  12. data/lib/core/mixin/macro/plugin_interface.rb +11 -11
  13. data/lib/core/plugin/action.rb +277 -24
  14. data/lib/core/plugin/base.rb +22 -14
  15. data/lib/core/plugin/command.rb +1 -1
  16. data/lib/core/plugin/event.rb +3 -3
  17. data/lib/core/plugin/extension.rb +1 -1
  18. data/lib/core/plugin/project.rb +15 -15
  19. data/lib/core/plugin/template.rb +1 -1
  20. data/lib/core/plugin/translator.rb +1 -1
  21. data/lib/core/util/cache.rb +1 -1
  22. data/lib/core/util/cli.rb +32 -3
  23. data/lib/core/util/console.rb +30 -10
  24. data/lib/core/util/data.rb +11 -3
  25. data/lib/core/util/logger.rb +1 -1
  26. data/lib/core/util/shell.rb +6 -3
  27. data/lib/core/util/ssh.rb +148 -24
  28. data/lib/nucleon/action/extract.rb +11 -4
  29. data/lib/nucleon/action/{add.rb → project/add.rb} +13 -4
  30. data/lib/nucleon/action/{create.rb → project/create.rb} +12 -3
  31. data/lib/nucleon/action/{remove.rb → project/remove.rb} +11 -2
  32. data/lib/nucleon/action/{save.rb → project/save.rb} +11 -2
  33. data/lib/nucleon/action/{update.rb → project/update.rb} +11 -2
  34. data/lib/nucleon/command/bash.rb +1 -1
  35. data/lib/nucleon/event/regex.rb +1 -1
  36. data/lib/nucleon/project/git.rb +3 -3
  37. data/lib/nucleon/template/{json.rb → JSON.rb} +1 -1
  38. data/lib/nucleon/template/{yaml.rb → YAML.rb} +1 -1
  39. data/lib/nucleon/template/wrapper.rb +1 -1
  40. data/lib/nucleon/translator/{json.rb → JSON.rb} +1 -1
  41. data/lib/nucleon/translator/{yaml.rb → YAML.rb} +1 -1
  42. data/lib/nucleon_base.rb +26 -15
  43. data/locales/en.yml +69 -44
  44. data/nucleon.gemspec +129 -11
  45. data/rdoc/site/0.1.19/ARCHITECTURE_rdoc.html +634 -0
  46. data/rdoc/site/0.1.19/Hash.html +347 -0
  47. data/rdoc/site/0.1.19/Kernel.html +413 -0
  48. data/rdoc/site/0.1.19/Nucleon.html +570 -0
  49. data/rdoc/site/0.1.19/Nucleon/Action.html +280 -0
  50. data/rdoc/site/0.1.19/Nucleon/Action/Add.html +458 -0
  51. data/rdoc/site/0.1.19/Nucleon/Action/Create.html +415 -0
  52. data/rdoc/site/0.1.19/Nucleon/Action/Extract.html +413 -0
  53. data/rdoc/site/0.1.19/Nucleon/Action/Remove.html +461 -0
  54. data/rdoc/site/0.1.19/Nucleon/Action/Save.html +434 -0
  55. data/rdoc/site/0.1.19/Nucleon/Action/Update.html +381 -0
  56. data/rdoc/site/0.1.19/Nucleon/Codes.html +563 -0
  57. data/rdoc/site/0.1.19/Nucleon/Command.html +275 -0
  58. data/rdoc/site/0.1.19/Nucleon/Command/Bash.html +544 -0
  59. data/rdoc/site/0.1.19/Nucleon/Config.html +1623 -0
  60. data/rdoc/site/0.1.19/Nucleon/Config/Collection.html +509 -0
  61. data/rdoc/site/0.1.19/Nucleon/Config/Options.html +489 -0
  62. data/rdoc/site/0.1.19/Nucleon/Core.html +635 -0
  63. data/rdoc/site/0.1.19/Nucleon/Errors.html +275 -0
  64. data/rdoc/site/0.1.19/Nucleon/Errors/BatchError.html +281 -0
  65. data/rdoc/site/0.1.19/Nucleon/Errors/NucleonError.html +657 -0
  66. data/rdoc/site/0.1.19/Nucleon/Errors/SSHUnavailable.html +281 -0
  67. data/rdoc/site/0.1.19/Nucleon/Event.html +275 -0
  68. data/rdoc/site/0.1.19/Nucleon/Event/Regex.html +467 -0
  69. data/rdoc/site/0.1.19/Nucleon/Facade.html +2336 -0
  70. data/rdoc/site/0.1.19/Nucleon/Gems.html +635 -0
  71. data/rdoc/site/0.1.19/Nucleon/Manager.html +1828 -0
  72. data/rdoc/site/0.1.19/Nucleon/Mixin.html +284 -0
  73. data/rdoc/site/0.1.19/Nucleon/Mixin/Action.html +277 -0
  74. data/rdoc/site/0.1.19/Nucleon/Mixin/Action/Commit.html +381 -0
  75. data/rdoc/site/0.1.19/Nucleon/Mixin/Action/Project.html +395 -0
  76. data/rdoc/site/0.1.19/Nucleon/Mixin/Action/Push.html +371 -0
  77. data/rdoc/site/0.1.19/Nucleon/Mixin/Colors.html +545 -0
  78. data/rdoc/site/0.1.19/Nucleon/Mixin/ConfigCollection.html +481 -0
  79. data/rdoc/site/0.1.19/Nucleon/Mixin/ConfigOptions.html +449 -0
  80. data/rdoc/site/0.1.19/Nucleon/Mixin/Macro.html +276 -0
  81. data/rdoc/site/0.1.19/Nucleon/Mixin/Macro/ObjectInterface.html +695 -0
  82. data/rdoc/site/0.1.19/Nucleon/Mixin/Macro/PluginInterface.html +682 -0
  83. data/rdoc/site/0.1.19/Nucleon/Mixin/Settings.html +481 -0
  84. data/rdoc/site/0.1.19/Nucleon/Mixin/SubConfig.html +887 -0
  85. data/rdoc/site/0.1.19/Nucleon/Parallel.html +325 -0
  86. data/rdoc/site/0.1.19/Nucleon/Parallel/ClassMethods.html +325 -0
  87. data/rdoc/site/0.1.19/Nucleon/Parallel/InstanceMethods.html +334 -0
  88. data/rdoc/site/0.1.19/Nucleon/Plugin.html +282 -0
  89. data/rdoc/site/0.1.19/Nucleon/Plugin/Action.html +1368 -0
  90. data/rdoc/site/0.1.19/Nucleon/Plugin/Action/Option.html +459 -0
  91. data/rdoc/site/0.1.19/Nucleon/Plugin/Base.html +1737 -0
  92. data/rdoc/site/0.1.19/Nucleon/Plugin/Command.html +721 -0
  93. data/rdoc/site/0.1.19/Nucleon/Plugin/Event.html +442 -0
  94. data/rdoc/site/0.1.19/Nucleon/Plugin/Extension.html +281 -0
  95. data/rdoc/site/0.1.19/Nucleon/Plugin/Project.html +2864 -0
  96. data/rdoc/site/0.1.19/Nucleon/Plugin/Template.html +476 -0
  97. data/rdoc/site/0.1.19/Nucleon/Plugin/Translator.html +371 -0
  98. data/rdoc/site/0.1.19/Nucleon/Project.html +276 -0
  99. data/rdoc/site/0.1.19/Nucleon/Project/Git.html +1801 -0
  100. data/rdoc/site/0.1.19/Nucleon/Project/Github.html +549 -0
  101. data/rdoc/site/0.1.19/Nucleon/Template.html +277 -0
  102. data/rdoc/site/0.1.19/Nucleon/Template/Json.html +329 -0
  103. data/rdoc/site/0.1.19/Nucleon/Template/Wrapper.html +329 -0
  104. data/rdoc/site/0.1.19/Nucleon/Template/Yaml.html +329 -0
  105. data/rdoc/site/0.1.19/Nucleon/Translator.html +276 -0
  106. data/rdoc/site/0.1.19/Nucleon/Translator/Json.html +366 -0
  107. data/rdoc/site/0.1.19/Nucleon/Translator/Yaml.html +366 -0
  108. data/rdoc/site/0.1.19/Nucleon/Util.html +285 -0
  109. data/rdoc/site/0.1.19/Nucleon/Util/CLI.html +388 -0
  110. data/rdoc/site/0.1.19/Nucleon/Util/CLI/Parser.html +1183 -0
  111. data/rdoc/site/0.1.19/Nucleon/Util/Cache.html +780 -0
  112. data/rdoc/site/0.1.19/Nucleon/Util/Console.html +1294 -0
  113. data/rdoc/site/0.1.19/Nucleon/Util/Data.html +1399 -0
  114. data/rdoc/site/0.1.19/Nucleon/Util/Disk.html +522 -0
  115. data/rdoc/site/0.1.19/Nucleon/Util/Git.html +361 -0
  116. data/rdoc/site/0.1.19/Nucleon/Util/Liquid.html +365 -0
  117. data/rdoc/site/0.1.19/Nucleon/Util/Logger.html +806 -0
  118. data/rdoc/site/0.1.19/Nucleon/Util/Package.html +558 -0
  119. data/rdoc/site/0.1.19/Nucleon/Util/SSH.html +910 -0
  120. data/rdoc/site/0.1.19/Nucleon/Util/SSH/Keypair.html +453 -0
  121. data/rdoc/site/0.1.19/Nucleon/Util/Shell.html +686 -0
  122. data/rdoc/site/0.1.19/Nucleon/Util/Shell/Result.html +497 -0
  123. data/rdoc/site/0.1.19/README_rdoc.html +312 -0
  124. data/rdoc/site/0.1.19/TODO_rdoc.html +267 -0
  125. data/rdoc/site/0.1.19/created.rid +60 -0
  126. data/rdoc/site/0.1.19/images/add.png +0 -0
  127. data/rdoc/site/0.1.19/images/brick.png +0 -0
  128. data/rdoc/site/0.1.19/images/brick_link.png +0 -0
  129. data/rdoc/site/0.1.19/images/bug.png +0 -0
  130. data/rdoc/site/0.1.19/images/bullet_black.png +0 -0
  131. data/rdoc/site/0.1.19/images/bullet_toggle_minus.png +0 -0
  132. data/rdoc/site/0.1.19/images/bullet_toggle_plus.png +0 -0
  133. data/rdoc/site/0.1.19/images/date.png +0 -0
  134. data/rdoc/site/0.1.19/images/delete.png +0 -0
  135. data/rdoc/site/0.1.19/images/find.png +0 -0
  136. data/rdoc/site/0.1.19/images/loadingAnimation.gif +0 -0
  137. data/rdoc/site/0.1.19/images/macFFBgHack.png +0 -0
  138. data/rdoc/site/0.1.19/images/package.png +0 -0
  139. data/rdoc/site/0.1.19/images/page_green.png +0 -0
  140. data/rdoc/site/0.1.19/images/page_white_text.png +0 -0
  141. data/rdoc/site/0.1.19/images/page_white_width.png +0 -0
  142. data/rdoc/site/0.1.19/images/plugin.png +0 -0
  143. data/rdoc/site/0.1.19/images/ruby.png +0 -0
  144. data/rdoc/site/0.1.19/images/tag_blue.png +0 -0
  145. data/rdoc/site/0.1.19/images/tag_green.png +0 -0
  146. data/rdoc/site/0.1.19/images/transparent.png +0 -0
  147. data/rdoc/site/0.1.19/images/wrench.png +0 -0
  148. data/rdoc/site/0.1.19/images/wrench_orange.png +0 -0
  149. data/rdoc/site/0.1.19/images/zoom.png +0 -0
  150. data/rdoc/site/0.1.19/index.html +311 -0
  151. data/rdoc/site/0.1.19/js/darkfish.js +155 -0
  152. data/rdoc/site/0.1.19/js/jquery.js +18 -0
  153. data/rdoc/site/0.1.19/js/navigation.js +142 -0
  154. data/rdoc/site/0.1.19/js/search.js +94 -0
  155. data/rdoc/site/0.1.19/js/search_index.js +1 -0
  156. data/rdoc/site/0.1.19/js/searcher.js +228 -0
  157. data/rdoc/site/0.1.19/rdoc.css +543 -0
  158. data/rdoc/site/0.1.19/table_of_contents.html +1541 -0
  159. metadata +140 -11
@@ -0,0 +1,887 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>module Nucleon::Mixin::SubConfig - nucleon 0.1.19</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="module">
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/core/mixin/sub_config.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+
60
+
61
+ <!-- Method Quickref -->
62
+ <nav id="method-list-section" class="section">
63
+ <h3 class="section-header">Methods</h3>
64
+
65
+ <ul class="link-list">
66
+
67
+ <li><a href="#method-i-_clear">#_clear</a>
68
+
69
+ <li><a href="#method-i-_defaults">#_defaults</a>
70
+
71
+ <li><a href="#method-i-_delete">#_delete</a>
72
+
73
+ <li><a href="#method-i-_export">#_export</a>
74
+
75
+ <li><a href="#method-i-_get">#_get</a>
76
+
77
+ <li><a href="#method-i-_import">#_import</a>
78
+
79
+ <li><a href="#method-i-_init">#_init</a>
80
+
81
+ <li><a href="#method-i-_set">#_set</a>
82
+
83
+ <li><a href="#method-i-clear">#clear</a>
84
+
85
+ <li><a href="#method-i-config">#config</a>
86
+
87
+ <li><a href="#method-i-config-3D">#config=</a>
88
+
89
+ <li><a href="#method-i-defaults">#defaults</a>
90
+
91
+ <li><a href="#method-i-delete">#delete</a>
92
+
93
+ <li><a href="#method-i-export">#export</a>
94
+
95
+ <li><a href="#method-i-get">#get</a>
96
+
97
+ <li><a href="#method-i-import">#import</a>
98
+
99
+ <li><a href="#method-i-init_subconfig">#init_subconfig</a>
100
+
101
+ <li><a href="#method-i-set">#set</a>
102
+
103
+ </ul>
104
+ </nav>
105
+
106
+ </div>
107
+
108
+ <div id="project-metadata">
109
+ <nav id="fileindex-section" class="section project-section">
110
+ <h3 class="section-header">Pages</h3>
111
+
112
+ <ul>
113
+
114
+ <li class="file"><a href="../../ARCHITECTURE_rdoc.html">ARCHITECTURE</a>
115
+
116
+ <li class="file"><a href="../../README_rdoc.html">README</a>
117
+
118
+ <li class="file"><a href="../../TODO_rdoc.html">TODO</a>
119
+
120
+ </ul>
121
+ </nav>
122
+
123
+ <nav id="classindex-section" class="section project-section">
124
+ <h3 class="section-header">Class and Module Index</h3>
125
+
126
+ <ul class="link-list">
127
+
128
+ <li><a href="../../Nucleon.html">Nucleon</a>
129
+
130
+ <li><a href="../../Nucleon/Action.html">Nucleon::Action</a>
131
+
132
+ <li><a href="../../Nucleon/Action/Add.html">Nucleon::Action::Add</a>
133
+
134
+ <li><a href="../../Nucleon/Action/Create.html">Nucleon::Action::Create</a>
135
+
136
+ <li><a href="../../Nucleon/Action/Extract.html">Nucleon::Action::Extract</a>
137
+
138
+ <li><a href="../../Nucleon/Action/Remove.html">Nucleon::Action::Remove</a>
139
+
140
+ <li><a href="../../Nucleon/Action/Save.html">Nucleon::Action::Save</a>
141
+
142
+ <li><a href="../../Nucleon/Action/Update.html">Nucleon::Action::Update</a>
143
+
144
+ <li><a href="../../Nucleon/Codes.html">Nucleon::Codes</a>
145
+
146
+ <li><a href="../../Nucleon/Command.html">Nucleon::Command</a>
147
+
148
+ <li><a href="../../Nucleon/Command/Bash.html">Nucleon::Command::Bash</a>
149
+
150
+ <li><a href="../../Nucleon/Config.html">Nucleon::Config</a>
151
+
152
+ <li><a href="../../Nucleon/Config/Collection.html">Nucleon::Config::Collection</a>
153
+
154
+ <li><a href="../../Nucleon/Config/Options.html">Nucleon::Config::Options</a>
155
+
156
+ <li><a href="../../Nucleon/Core.html">Nucleon::Core</a>
157
+
158
+ <li><a href="../../Nucleon/Errors.html">Nucleon::Errors</a>
159
+
160
+ <li><a href="../../Nucleon/Errors/BatchError.html">Nucleon::Errors::BatchError</a>
161
+
162
+ <li><a href="../../Nucleon/Errors/NucleonError.html">Nucleon::Errors::NucleonError</a>
163
+
164
+ <li><a href="../../Nucleon/Errors/SSHUnavailable.html">Nucleon::Errors::SSHUnavailable</a>
165
+
166
+ <li><a href="../../Nucleon/Event.html">Nucleon::Event</a>
167
+
168
+ <li><a href="../../Nucleon/Event/Regex.html">Nucleon::Event::Regex</a>
169
+
170
+ <li><a href="../../Nucleon/Facade.html">Nucleon::Facade</a>
171
+
172
+ <li><a href="../../Nucleon/Gems.html">Nucleon::Gems</a>
173
+
174
+ <li><a href="../../Nucleon/Manager.html">Nucleon::Manager</a>
175
+
176
+ <li><a href="../../Nucleon/Mixin.html">Nucleon::Mixin</a>
177
+
178
+ <li><a href="../../Nucleon/Mixin/Action.html">Nucleon::Mixin::Action</a>
179
+
180
+ <li><a href="../../Nucleon/Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
181
+
182
+ <li><a href="../../Nucleon/Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
183
+
184
+ <li><a href="../../Nucleon/Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
185
+
186
+ <li><a href="../../Nucleon/Mixin/Colors.html">Nucleon::Mixin::Colors</a>
187
+
188
+ <li><a href="../../Nucleon/Mixin/ConfigCollection.html">Nucleon::Mixin::ConfigCollection</a>
189
+
190
+ <li><a href="../../Nucleon/Mixin/ConfigOptions.html">Nucleon::Mixin::ConfigOptions</a>
191
+
192
+ <li><a href="../../Nucleon/Mixin/Macro.html">Nucleon::Mixin::Macro</a>
193
+
194
+ <li><a href="../../Nucleon/Mixin/Macro/ObjectInterface.html">Nucleon::Mixin::Macro::ObjectInterface</a>
195
+
196
+ <li><a href="../../Nucleon/Mixin/Macro/PluginInterface.html">Nucleon::Mixin::Macro::PluginInterface</a>
197
+
198
+ <li><a href="../../Nucleon/Mixin/Settings.html">Nucleon::Mixin::Settings</a>
199
+
200
+ <li><a href="../../Nucleon/Mixin/SubConfig.html">Nucleon::Mixin::SubConfig</a>
201
+
202
+ <li><a href="../../Nucleon/Parallel.html">Nucleon::Parallel</a>
203
+
204
+ <li><a href="../../Nucleon/Parallel/ClassMethods.html">Nucleon::Parallel::ClassMethods</a>
205
+
206
+ <li><a href="../../Nucleon/Parallel/InstanceMethods.html">Nucleon::Parallel::InstanceMethods</a>
207
+
208
+ <li><a href="../../Nucleon/Plugin.html">Nucleon::Plugin</a>
209
+
210
+ <li><a href="../../Nucleon/Plugin/Action.html">Nucleon::Plugin::Action</a>
211
+
212
+ <li><a href="../../Nucleon/Plugin/Action/Option.html">Nucleon::Plugin::Action::Option</a>
213
+
214
+ <li><a href="../../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
215
+
216
+ <li><a href="../../Nucleon/Plugin/Command.html">Nucleon::Plugin::Command</a>
217
+
218
+ <li><a href="../../Nucleon/Plugin/Event.html">Nucleon::Plugin::Event</a>
219
+
220
+ <li><a href="../../Nucleon/Plugin/Extension.html">Nucleon::Plugin::Extension</a>
221
+
222
+ <li><a href="../../Nucleon/Plugin/Project.html">Nucleon::Plugin::Project</a>
223
+
224
+ <li><a href="../../Nucleon/Plugin/Template.html">Nucleon::Plugin::Template</a>
225
+
226
+ <li><a href="../../Nucleon/Plugin/Translator.html">Nucleon::Plugin::Translator</a>
227
+
228
+ <li><a href="../../Nucleon/Project.html">Nucleon::Project</a>
229
+
230
+ <li><a href="../../Nucleon/Project/Git.html">Nucleon::Project::Git</a>
231
+
232
+ <li><a href="../../Nucleon/Project/Github.html">Nucleon::Project::Github</a>
233
+
234
+ <li><a href="../../Nucleon/Template.html">Nucleon::Template</a>
235
+
236
+ <li><a href="../../Nucleon/Template/Json.html">Nucleon::Template::Json</a>
237
+
238
+ <li><a href="../../Nucleon/Template/Wrapper.html">Nucleon::Template::Wrapper</a>
239
+
240
+ <li><a href="../../Nucleon/Template/Yaml.html">Nucleon::Template::Yaml</a>
241
+
242
+ <li><a href="../../Nucleon/Translator.html">Nucleon::Translator</a>
243
+
244
+ <li><a href="../../Nucleon/Translator/Json.html">Nucleon::Translator::Json</a>
245
+
246
+ <li><a href="../../Nucleon/Translator/Yaml.html">Nucleon::Translator::Yaml</a>
247
+
248
+ <li><a href="../../Nucleon/Util.html">Nucleon::Util</a>
249
+
250
+ <li><a href="../../Nucleon/Util/CLI.html">Nucleon::Util::CLI</a>
251
+
252
+ <li><a href="../../Nucleon/Util/CLI/Parser.html">Nucleon::Util::CLI::Parser</a>
253
+
254
+ <li><a href="../../Nucleon/Util/Cache.html">Nucleon::Util::Cache</a>
255
+
256
+ <li><a href="../../Nucleon/Util/Console.html">Nucleon::Util::Console</a>
257
+
258
+ <li><a href="../../Nucleon/Util/Data.html">Nucleon::Util::Data</a>
259
+
260
+ <li><a href="../../Nucleon/Util/Disk.html">Nucleon::Util::Disk</a>
261
+
262
+ <li><a href="../../Nucleon/Util/Git.html">Nucleon::Util::Git</a>
263
+
264
+ <li><a href="../../Nucleon/Util/Liquid.html">Nucleon::Util::Liquid</a>
265
+
266
+ <li><a href="../../Nucleon/Util/Logger.html">Nucleon::Util::Logger</a>
267
+
268
+ <li><a href="../../Nucleon/Util/Package.html">Nucleon::Util::Package</a>
269
+
270
+ <li><a href="../../Nucleon/Util/SSH.html">Nucleon::Util::SSH</a>
271
+
272
+ <li><a href="../../Nucleon/Util/SSH/Keypair.html">Nucleon::Util::SSH::Keypair</a>
273
+
274
+ <li><a href="../../Nucleon/Util/Shell.html">Nucleon::Util::Shell</a>
275
+
276
+ <li><a href="../../Nucleon/Util/Shell/Result.html">Nucleon::Util::Shell::Result</a>
277
+
278
+ <li><a href="../../Hash.html">Hash</a>
279
+
280
+ <li><a href="../../Kernel.html">Kernel</a>
281
+
282
+ </ul>
283
+ </nav>
284
+
285
+ </div>
286
+ </nav>
287
+
288
+ <div id="documentation">
289
+ <h1 class="module">module Nucleon::Mixin::SubConfig</h1>
290
+
291
+ <div id="description" class="description">
292
+
293
+ </div><!-- description -->
294
+
295
+
296
+
297
+
298
+ <section id="5Buntitled-5D" class="documentation-section">
299
+
300
+
301
+
302
+
303
+
304
+
305
+
306
+
307
+ <!-- Methods -->
308
+
309
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
310
+ <h3 class="section-header">Public Instance Methods</h3>
311
+
312
+
313
+ <div id="method-i-clear" class="method-detail ">
314
+
315
+ <div class="method-heading">
316
+ <span class="method-name">clear</span><span
317
+ class="method-args">()</span>
318
+ <span class="method-click-advice">click to toggle source</span>
319
+ </div>
320
+
321
+
322
+ <div class="method-description">
323
+
324
+
325
+
326
+
327
+
328
+ <div class="method-source-code" id="clear-source">
329
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 98</span>
330
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">clear</span>
331
+ <span class="ruby-identifier">init_subconfig</span>
332
+ <span class="ruby-identifier">config</span>.<span class="ruby-identifier">clear</span>
333
+ <span class="ruby-keyword">end</span></pre>
334
+ </div><!-- clear-source -->
335
+
336
+ </div>
337
+
338
+
339
+
340
+
341
+ </div><!-- clear-method -->
342
+
343
+
344
+ <div id="method-i-config" class="method-detail ">
345
+
346
+ <div class="method-heading">
347
+ <span class="method-name">config</span><span
348
+ class="method-args">()</span>
349
+ <span class="method-click-advice">click to toggle source</span>
350
+ </div>
351
+
352
+
353
+ <div class="method-description">
354
+
355
+
356
+
357
+
358
+
359
+ <div class="method-source-code" id="config-source">
360
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 28</span>
361
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">config</span>
362
+ <span class="ruby-keyword">return</span> <span class="ruby-ivar">@config</span>
363
+ <span class="ruby-keyword">end</span></pre>
364
+ </div><!-- config-source -->
365
+
366
+ </div>
367
+
368
+
369
+
370
+
371
+ </div><!-- config-method -->
372
+
373
+
374
+ <div id="method-i-config-3D" class="method-detail ">
375
+
376
+ <div class="method-heading">
377
+ <span class="method-name">config=</span><span
378
+ class="method-args">(config)</span>
379
+ <span class="method-click-advice">click to toggle source</span>
380
+ </div>
381
+
382
+
383
+ <div class="method-description">
384
+
385
+
386
+
387
+
388
+
389
+ <div class="method-source-code" id="config-3D-source">
390
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 34</span>
391
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">config=</span><span class="ruby-identifier">config</span>
392
+ <span class="ruby-ivar">@config</span> = <span class="ruby-identifier">config</span>
393
+ <span class="ruby-keyword">end</span></pre>
394
+ </div><!-- config-3D-source -->
395
+
396
+ </div>
397
+
398
+
399
+
400
+
401
+ </div><!-- config-3D-method -->
402
+
403
+
404
+ <div id="method-i-defaults" class="method-detail ">
405
+
406
+ <div class="method-heading">
407
+ <span class="method-name">defaults</span><span
408
+ class="method-args">(defaults, options = {})</span>
409
+ <span class="method-click-advice">click to toggle source</span>
410
+ </div>
411
+
412
+
413
+ <div class="method-description">
414
+
415
+
416
+
417
+
418
+
419
+ <div class="method-source-code" id="defaults-source">
420
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 128</span>
421
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">defaults</span>(<span class="ruby-identifier">defaults</span>, <span class="ruby-identifier">options</span> = {})
422
+ <span class="ruby-identifier">init_subconfig</span>
423
+ <span class="ruby-identifier">config</span>.<span class="ruby-identifier">defaults</span>(<span class="ruby-identifier">defaults</span>, <span class="ruby-identifier">options</span>)
424
+ <span class="ruby-keyword">end</span></pre>
425
+ </div><!-- defaults-source -->
426
+
427
+ </div>
428
+
429
+
430
+
431
+
432
+ </div><!-- defaults-method -->
433
+
434
+
435
+ <div id="method-i-delete" class="method-detail ">
436
+
437
+ <div class="method-heading">
438
+ <span class="method-name">delete</span><span
439
+ class="method-args">(keys, default = nil)</span>
440
+ <span class="method-click-advice">click to toggle source</span>
441
+ </div>
442
+
443
+
444
+ <div class="method-description">
445
+
446
+
447
+
448
+
449
+
450
+ <div class="method-source-code" id="delete-source">
451
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 84</span>
452
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">delete</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">default</span> = <span class="ruby-keyword">nil</span>)
453
+ <span class="ruby-identifier">init_subconfig</span>
454
+ <span class="ruby-identifier">config</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">default</span>)
455
+ <span class="ruby-keyword">end</span></pre>
456
+ </div><!-- delete-source -->
457
+
458
+ </div>
459
+
460
+
461
+
462
+
463
+ </div><!-- delete-method -->
464
+
465
+
466
+ <div id="method-i-export" class="method-detail ">
467
+
468
+ <div class="method-heading">
469
+ <span class="method-name">export</span><span
470
+ class="method-args">()</span>
471
+ <span class="method-click-advice">click to toggle source</span>
472
+ </div>
473
+
474
+
475
+ <div class="method-description">
476
+
477
+
478
+
479
+
480
+
481
+ <div class="method-source-code" id="export-source">
482
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 142</span>
483
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">export</span>
484
+ <span class="ruby-identifier">init_subconfig</span>
485
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">config</span>.<span class="ruby-identifier">export</span>
486
+ <span class="ruby-keyword">end</span></pre>
487
+ </div><!-- export-source -->
488
+
489
+ </div>
490
+
491
+
492
+
493
+
494
+ </div><!-- export-method -->
495
+
496
+
497
+ <div id="method-i-get" class="method-detail ">
498
+
499
+ <div class="method-heading">
500
+ <span class="method-name">get</span><span
501
+ class="method-args">(keys, default = nil, format = false)</span>
502
+ <span class="method-click-advice">click to toggle source</span>
503
+ </div>
504
+
505
+
506
+ <div class="method-description">
507
+
508
+
509
+
510
+
511
+
512
+ <div class="method-source-code" id="get-source">
513
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 47</span>
514
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">get</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">default</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">format</span> = <span class="ruby-keyword">false</span>)
515
+ <span class="ruby-identifier">init_subconfig</span>
516
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">config</span>.<span class="ruby-identifier">get</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">default</span>, <span class="ruby-identifier">format</span>)
517
+ <span class="ruby-keyword">end</span></pre>
518
+ </div><!-- get-source -->
519
+
520
+ </div>
521
+
522
+
523
+
524
+
525
+ </div><!-- get-method -->
526
+
527
+
528
+ <div id="method-i-import" class="method-detail ">
529
+
530
+ <div class="method-heading">
531
+ <span class="method-name">import</span><span
532
+ class="method-args">(properties, options = {})</span>
533
+ <span class="method-click-advice">click to toggle source</span>
534
+ </div>
535
+
536
+
537
+ <div class="method-description">
538
+
539
+
540
+
541
+
542
+
543
+ <div class="method-source-code" id="import-source">
544
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 113</span>
545
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">import</span>(<span class="ruby-identifier">properties</span>, <span class="ruby-identifier">options</span> = {})
546
+ <span class="ruby-identifier">init_subconfig</span>
547
+ <span class="ruby-identifier">config</span>.<span class="ruby-identifier">import</span>(<span class="ruby-identifier">properties</span>, <span class="ruby-identifier">options</span>)
548
+ <span class="ruby-keyword">end</span></pre>
549
+ </div><!-- import-source -->
550
+
551
+ </div>
552
+
553
+
554
+
555
+
556
+ </div><!-- import-method -->
557
+
558
+
559
+ <div id="method-i-set" class="method-detail ">
560
+
561
+ <div class="method-heading">
562
+ <span class="method-name">set</span><span
563
+ class="method-args">(keys, value = '')</span>
564
+ <span class="method-click-advice">click to toggle source</span>
565
+ </div>
566
+
567
+
568
+ <div class="method-description">
569
+
570
+
571
+
572
+
573
+
574
+ <div class="method-source-code" id="set-source">
575
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 68</span>
576
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">set</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">value</span> = <span class="ruby-string">&#39;&#39;</span>)
577
+ <span class="ruby-identifier">init_subconfig</span>
578
+ <span class="ruby-identifier">config</span>.<span class="ruby-identifier">set</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">value</span>)
579
+ <span class="ruby-keyword">end</span></pre>
580
+ </div><!-- set-source -->
581
+
582
+ </div>
583
+
584
+
585
+
586
+
587
+ </div><!-- set-method -->
588
+
589
+
590
+ </section><!-- public-instance-method-details -->
591
+
592
+ <section id="protected-instance-5Buntitled-5D-method-details" class="method-section section">
593
+ <h3 class="section-header">Protected Instance Methods</h3>
594
+
595
+
596
+ <div id="method-i-_clear" class="method-detail ">
597
+
598
+ <div class="method-heading">
599
+ <span class="method-name">_clear</span><span
600
+ class="method-args">()</span>
601
+ <span class="method-click-advice">click to toggle source</span>
602
+ </div>
603
+
604
+
605
+ <div class="method-description">
606
+
607
+
608
+
609
+
610
+
611
+ <div class="method-source-code" id="_clear-source">
612
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 91</span>
613
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">_clear</span>
614
+ <span class="ruby-ivar">@properties</span> = {}
615
+ <span class="ruby-keyword">end</span></pre>
616
+ </div><!-- _clear-source -->
617
+
618
+ </div>
619
+
620
+
621
+
622
+
623
+ </div><!-- _clear-method -->
624
+
625
+
626
+ <div id="method-i-_defaults" class="method-detail ">
627
+
628
+ <div class="method-heading">
629
+ <span class="method-name">_defaults</span><span
630
+ class="method-args">(defaults, options = {})</span>
631
+ <span class="method-click-advice">click to toggle source</span>
632
+ </div>
633
+
634
+
635
+ <div class="method-description">
636
+
637
+
638
+
639
+
640
+
641
+ <div class="method-source-code" id="_defaults-source">
642
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 120</span>
643
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">_defaults</span>(<span class="ruby-identifier">defaults</span>, <span class="ruby-identifier">options</span> = {})
644
+ <span class="ruby-identifier">config</span> = <span class="ruby-identifier">new</span>(<span class="ruby-identifier">options</span>).<span class="ruby-identifier">set</span>(<span class="ruby-value">:import_type</span>, <span class="ruby-value">:default</span>)
645
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">import_base</span>(<span class="ruby-identifier">defaults</span>, <span class="ruby-identifier">config</span>)
646
+ <span class="ruby-keyword">end</span></pre>
647
+ </div><!-- _defaults-source -->
648
+
649
+ </div>
650
+
651
+
652
+
653
+
654
+ </div><!-- _defaults-method -->
655
+
656
+
657
+ <div id="method-i-_delete" class="method-detail ">
658
+
659
+ <div class="method-heading">
660
+ <span class="method-name">_delete</span><span
661
+ class="method-args">(keys, default = nil)</span>
662
+ <span class="method-click-advice">click to toggle source</span>
663
+ </div>
664
+
665
+
666
+ <div class="method-description">
667
+
668
+
669
+
670
+
671
+
672
+ <div class="method-source-code" id="_delete-source">
673
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 75</span>
674
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">_delete</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">default</span> = <span class="ruby-keyword">nil</span>)
675
+ <span class="ruby-identifier">existing</span> = <span class="ruby-identifier">modify</span>(<span class="ruby-ivar">@properties</span>, <span class="ruby-identifier">array</span>(<span class="ruby-identifier">keys</span>).<span class="ruby-identifier">flatten</span>, <span class="ruby-keyword">nil</span>)
676
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">existing</span>[<span class="ruby-value">:value</span>] <span class="ruby-keyword">if</span> <span class="ruby-identifier">existing</span>[<span class="ruby-value">:value</span>]
677
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">default</span>
678
+ <span class="ruby-keyword">end</span></pre>
679
+ </div><!-- _delete-source -->
680
+
681
+ </div>
682
+
683
+
684
+
685
+
686
+ </div><!-- _delete-method -->
687
+
688
+
689
+ <div id="method-i-_export" class="method-detail ">
690
+
691
+ <div class="method-heading">
692
+ <span class="method-name">_export</span><span
693
+ class="method-args">()</span>
694
+ <span class="method-click-advice">click to toggle source</span>
695
+ </div>
696
+
697
+
698
+ <div class="method-description">
699
+
700
+
701
+
702
+
703
+
704
+ <div class="method-source-code" id="_export-source">
705
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 135</span>
706
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">_export</span>
707
+ <span class="ruby-keyword">return</span> <span class="ruby-ivar">@properties</span>
708
+ <span class="ruby-keyword">end</span></pre>
709
+ </div><!-- _export-source -->
710
+
711
+ </div>
712
+
713
+
714
+
715
+
716
+ </div><!-- _export-method -->
717
+
718
+
719
+ <div id="method-i-_get" class="method-detail ">
720
+
721
+ <div class="method-heading">
722
+ <span class="method-name">_get</span><span
723
+ class="method-args">(keys, default = nil, format = false)</span>
724
+ <span class="method-click-advice">click to toggle source</span>
725
+ </div>
726
+
727
+
728
+ <div class="method-description">
729
+
730
+
731
+
732
+
733
+
734
+ <div class="method-source-code" id="_get-source">
735
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 40</span>
736
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">_get</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">default</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">format</span> = <span class="ruby-keyword">false</span>)
737
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">fetch</span>(<span class="ruby-ivar">@properties</span>, <span class="ruby-identifier">array</span>(<span class="ruby-identifier">keys</span>).<span class="ruby-identifier">flatten</span>, <span class="ruby-identifier">default</span>, <span class="ruby-identifier">format</span>)
738
+ <span class="ruby-keyword">end</span></pre>
739
+ </div><!-- _get-source -->
740
+
741
+ </div>
742
+
743
+
744
+
745
+
746
+ </div><!-- _get-method -->
747
+
748
+
749
+ <div id="method-i-_import" class="method-detail ">
750
+
751
+ <div class="method-heading">
752
+ <span class="method-name">_import</span><span
753
+ class="method-args">(properties, options = {})</span>
754
+ <span class="method-click-advice">click to toggle source</span>
755
+ </div>
756
+
757
+
758
+ <div class="method-description">
759
+
760
+
761
+
762
+
763
+
764
+ <div class="method-source-code" id="_import-source">
765
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 106</span>
766
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">_import</span>(<span class="ruby-identifier">properties</span>, <span class="ruby-identifier">options</span> = {})
767
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">import_base</span>(<span class="ruby-identifier">properties</span>, <span class="ruby-identifier">options</span>)
768
+ <span class="ruby-keyword">end</span></pre>
769
+ </div><!-- _import-source -->
770
+
771
+ </div>
772
+
773
+
774
+
775
+
776
+ </div><!-- _import-method -->
777
+
778
+
779
+ <div id="method-i-_init" class="method-detail ">
780
+
781
+ <div class="method-heading">
782
+ <span class="method-name">_init</span><span
783
+ class="method-args">(keys, default = nil)</span>
784
+ <span class="method-click-advice">click to toggle source</span>
785
+ </div>
786
+
787
+
788
+ <div class="method-description">
789
+
790
+
791
+
792
+
793
+
794
+ <div class="method-source-code" id="_init-source">
795
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 54</span>
796
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">_init</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">default</span> = <span class="ruby-keyword">nil</span>)
797
+ <span class="ruby-keyword">return</span> <span class="ruby-identifier">_set</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">_get</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">default</span>))
798
+ <span class="ruby-keyword">end</span></pre>
799
+ </div><!-- _init-source -->
800
+
801
+ </div>
802
+
803
+
804
+
805
+
806
+ </div><!-- _init-method -->
807
+
808
+
809
+ <div id="method-i-_set" class="method-detail ">
810
+
811
+ <div class="method-heading">
812
+ <span class="method-name">_set</span><span
813
+ class="method-args">(keys, value = '')</span>
814
+ <span class="method-click-advice">click to toggle source</span>
815
+ </div>
816
+
817
+
818
+ <div class="method-description">
819
+
820
+
821
+
822
+
823
+
824
+ <div class="method-source-code" id="_set-source">
825
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 61</span>
826
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">_set</span>(<span class="ruby-identifier">keys</span>, <span class="ruby-identifier">value</span> = <span class="ruby-string">&#39;&#39;</span>)
827
+ <span class="ruby-identifier">modify</span>(<span class="ruby-ivar">@properties</span>, <span class="ruby-identifier">array</span>(<span class="ruby-identifier">keys</span>).<span class="ruby-identifier">flatten</span>, <span class="ruby-identifier">value</span>)
828
+ <span class="ruby-keyword">end</span></pre>
829
+ </div><!-- _set-source -->
830
+
831
+ </div>
832
+
833
+
834
+
835
+
836
+ </div><!-- _set-method -->
837
+
838
+
839
+ <div id="method-i-init_subconfig" class="method-detail ">
840
+
841
+ <div class="method-heading">
842
+ <span class="method-name">init_subconfig</span><span
843
+ class="method-args">(reset = false)</span>
844
+ <span class="method-click-advice">click to toggle source</span>
845
+ </div>
846
+
847
+
848
+ <div class="method-description">
849
+
850
+
851
+
852
+
853
+
854
+ <div class="method-source-code" id="init_subconfig-source">
855
+ <pre><span class="ruby-comment"># File lib/core/mixin/sub_config.rb, line 14</span>
856
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">init_subconfig</span>(<span class="ruby-identifier">reset</span> = <span class="ruby-keyword">false</span>)
857
+ <span class="ruby-keyword">return</span> <span class="ruby-keyword">if</span> <span class="ruby-ivar">@subconfig_initialized</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-operator">!</span> <span class="ruby-identifier">reset</span>
858
+
859
+ <span class="ruby-keyword">unless</span> <span class="ruby-ivar">@config</span>
860
+ <span class="ruby-ivar">@config</span> = <span class="ruby-constant">Config</span>.<span class="ruby-identifier">new</span>
861
+ <span class="ruby-keyword">end</span>
862
+
863
+ <span class="ruby-ivar">@subconfig_initialized</span> = <span class="ruby-keyword">true</span>
864
+ <span class="ruby-keyword">end</span></pre>
865
+ </div><!-- init_subconfig-source -->
866
+
867
+ </div>
868
+
869
+
870
+
871
+
872
+ </div><!-- init_subconfig-method -->
873
+
874
+
875
+ </section><!-- protected-instance-method-details -->
876
+
877
+ </section><!-- 5Buntitled-5D -->
878
+
879
+ </div><!-- documentation -->
880
+
881
+
882
+ <footer id="validator-badges">
883
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
884
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
885
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
886
+ </footer>
887
+