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,434 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class Nucleon::Action::Save - 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="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/nucleon/action/save.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+ <nav id="parent-class-section" class="section">
60
+ <h3 class="section-header">Parent</h3>
61
+
62
+ <p class="link">Nucleon.plugin_class(:action)
63
+
64
+ </nav>
65
+
66
+ <!-- Included Modules -->
67
+ <nav id="includes-section" class="section">
68
+ <h3 class="section-header">Included Modules</h3>
69
+
70
+ <ul class="link-list">
71
+
72
+
73
+ <li><a class="include" href="../Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
74
+
75
+
76
+
77
+ <li><a class="include" href="../Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
78
+
79
+
80
+
81
+ <li><a class="include" href="../Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
82
+
83
+
84
+ </ul>
85
+ </nav>
86
+
87
+ <!-- Method Quickref -->
88
+ <nav id="method-list-section" class="section">
89
+ <h3 class="section-header">Methods</h3>
90
+
91
+ <ul class="link-list">
92
+
93
+ <li><a href="#method-i-arguments">#arguments</a>
94
+
95
+ <li><a href="#method-i-configure">#configure</a>
96
+
97
+ <li><a href="#method-i-execute">#execute</a>
98
+
99
+ </ul>
100
+ </nav>
101
+
102
+ </div>
103
+
104
+ <div id="project-metadata">
105
+ <nav id="fileindex-section" class="section project-section">
106
+ <h3 class="section-header">Pages</h3>
107
+
108
+ <ul>
109
+
110
+ <li class="file"><a href="../../ARCHITECTURE_rdoc.html">ARCHITECTURE</a>
111
+
112
+ <li class="file"><a href="../../README_rdoc.html">README</a>
113
+
114
+ <li class="file"><a href="../../TODO_rdoc.html">TODO</a>
115
+
116
+ </ul>
117
+ </nav>
118
+
119
+ <nav id="classindex-section" class="section project-section">
120
+ <h3 class="section-header">Class and Module Index</h3>
121
+
122
+ <ul class="link-list">
123
+
124
+ <li><a href="../../Nucleon.html">Nucleon</a>
125
+
126
+ <li><a href="../../Nucleon/Action.html">Nucleon::Action</a>
127
+
128
+ <li><a href="../../Nucleon/Action/Add.html">Nucleon::Action::Add</a>
129
+
130
+ <li><a href="../../Nucleon/Action/Create.html">Nucleon::Action::Create</a>
131
+
132
+ <li><a href="../../Nucleon/Action/Extract.html">Nucleon::Action::Extract</a>
133
+
134
+ <li><a href="../../Nucleon/Action/Remove.html">Nucleon::Action::Remove</a>
135
+
136
+ <li><a href="../../Nucleon/Action/Save.html">Nucleon::Action::Save</a>
137
+
138
+ <li><a href="../../Nucleon/Action/Update.html">Nucleon::Action::Update</a>
139
+
140
+ <li><a href="../../Nucleon/Codes.html">Nucleon::Codes</a>
141
+
142
+ <li><a href="../../Nucleon/Command.html">Nucleon::Command</a>
143
+
144
+ <li><a href="../../Nucleon/Command/Bash.html">Nucleon::Command::Bash</a>
145
+
146
+ <li><a href="../../Nucleon/Config.html">Nucleon::Config</a>
147
+
148
+ <li><a href="../../Nucleon/Config/Collection.html">Nucleon::Config::Collection</a>
149
+
150
+ <li><a href="../../Nucleon/Config/Options.html">Nucleon::Config::Options</a>
151
+
152
+ <li><a href="../../Nucleon/Core.html">Nucleon::Core</a>
153
+
154
+ <li><a href="../../Nucleon/Errors.html">Nucleon::Errors</a>
155
+
156
+ <li><a href="../../Nucleon/Errors/BatchError.html">Nucleon::Errors::BatchError</a>
157
+
158
+ <li><a href="../../Nucleon/Errors/NucleonError.html">Nucleon::Errors::NucleonError</a>
159
+
160
+ <li><a href="../../Nucleon/Errors/SSHUnavailable.html">Nucleon::Errors::SSHUnavailable</a>
161
+
162
+ <li><a href="../../Nucleon/Event.html">Nucleon::Event</a>
163
+
164
+ <li><a href="../../Nucleon/Event/Regex.html">Nucleon::Event::Regex</a>
165
+
166
+ <li><a href="../../Nucleon/Facade.html">Nucleon::Facade</a>
167
+
168
+ <li><a href="../../Nucleon/Gems.html">Nucleon::Gems</a>
169
+
170
+ <li><a href="../../Nucleon/Manager.html">Nucleon::Manager</a>
171
+
172
+ <li><a href="../../Nucleon/Mixin.html">Nucleon::Mixin</a>
173
+
174
+ <li><a href="../../Nucleon/Mixin/Action.html">Nucleon::Mixin::Action</a>
175
+
176
+ <li><a href="../../Nucleon/Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
177
+
178
+ <li><a href="../../Nucleon/Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
179
+
180
+ <li><a href="../../Nucleon/Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
181
+
182
+ <li><a href="../../Nucleon/Mixin/Colors.html">Nucleon::Mixin::Colors</a>
183
+
184
+ <li><a href="../../Nucleon/Mixin/ConfigCollection.html">Nucleon::Mixin::ConfigCollection</a>
185
+
186
+ <li><a href="../../Nucleon/Mixin/ConfigOptions.html">Nucleon::Mixin::ConfigOptions</a>
187
+
188
+ <li><a href="../../Nucleon/Mixin/Macro.html">Nucleon::Mixin::Macro</a>
189
+
190
+ <li><a href="../../Nucleon/Mixin/Macro/ObjectInterface.html">Nucleon::Mixin::Macro::ObjectInterface</a>
191
+
192
+ <li><a href="../../Nucleon/Mixin/Macro/PluginInterface.html">Nucleon::Mixin::Macro::PluginInterface</a>
193
+
194
+ <li><a href="../../Nucleon/Mixin/Settings.html">Nucleon::Mixin::Settings</a>
195
+
196
+ <li><a href="../../Nucleon/Mixin/SubConfig.html">Nucleon::Mixin::SubConfig</a>
197
+
198
+ <li><a href="../../Nucleon/Parallel.html">Nucleon::Parallel</a>
199
+
200
+ <li><a href="../../Nucleon/Parallel/ClassMethods.html">Nucleon::Parallel::ClassMethods</a>
201
+
202
+ <li><a href="../../Nucleon/Parallel/InstanceMethods.html">Nucleon::Parallel::InstanceMethods</a>
203
+
204
+ <li><a href="../../Nucleon/Plugin.html">Nucleon::Plugin</a>
205
+
206
+ <li><a href="../../Nucleon/Plugin/Action.html">Nucleon::Plugin::Action</a>
207
+
208
+ <li><a href="../../Nucleon/Plugin/Action/Option.html">Nucleon::Plugin::Action::Option</a>
209
+
210
+ <li><a href="../../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
211
+
212
+ <li><a href="../../Nucleon/Plugin/Command.html">Nucleon::Plugin::Command</a>
213
+
214
+ <li><a href="../../Nucleon/Plugin/Event.html">Nucleon::Plugin::Event</a>
215
+
216
+ <li><a href="../../Nucleon/Plugin/Extension.html">Nucleon::Plugin::Extension</a>
217
+
218
+ <li><a href="../../Nucleon/Plugin/Project.html">Nucleon::Plugin::Project</a>
219
+
220
+ <li><a href="../../Nucleon/Plugin/Template.html">Nucleon::Plugin::Template</a>
221
+
222
+ <li><a href="../../Nucleon/Plugin/Translator.html">Nucleon::Plugin::Translator</a>
223
+
224
+ <li><a href="../../Nucleon/Project.html">Nucleon::Project</a>
225
+
226
+ <li><a href="../../Nucleon/Project/Git.html">Nucleon::Project::Git</a>
227
+
228
+ <li><a href="../../Nucleon/Project/Github.html">Nucleon::Project::Github</a>
229
+
230
+ <li><a href="../../Nucleon/Template.html">Nucleon::Template</a>
231
+
232
+ <li><a href="../../Nucleon/Template/Json.html">Nucleon::Template::Json</a>
233
+
234
+ <li><a href="../../Nucleon/Template/Wrapper.html">Nucleon::Template::Wrapper</a>
235
+
236
+ <li><a href="../../Nucleon/Template/Yaml.html">Nucleon::Template::Yaml</a>
237
+
238
+ <li><a href="../../Nucleon/Translator.html">Nucleon::Translator</a>
239
+
240
+ <li><a href="../../Nucleon/Translator/Json.html">Nucleon::Translator::Json</a>
241
+
242
+ <li><a href="../../Nucleon/Translator/Yaml.html">Nucleon::Translator::Yaml</a>
243
+
244
+ <li><a href="../../Nucleon/Util.html">Nucleon::Util</a>
245
+
246
+ <li><a href="../../Nucleon/Util/CLI.html">Nucleon::Util::CLI</a>
247
+
248
+ <li><a href="../../Nucleon/Util/CLI/Parser.html">Nucleon::Util::CLI::Parser</a>
249
+
250
+ <li><a href="../../Nucleon/Util/Cache.html">Nucleon::Util::Cache</a>
251
+
252
+ <li><a href="../../Nucleon/Util/Console.html">Nucleon::Util::Console</a>
253
+
254
+ <li><a href="../../Nucleon/Util/Data.html">Nucleon::Util::Data</a>
255
+
256
+ <li><a href="../../Nucleon/Util/Disk.html">Nucleon::Util::Disk</a>
257
+
258
+ <li><a href="../../Nucleon/Util/Git.html">Nucleon::Util::Git</a>
259
+
260
+ <li><a href="../../Nucleon/Util/Liquid.html">Nucleon::Util::Liquid</a>
261
+
262
+ <li><a href="../../Nucleon/Util/Logger.html">Nucleon::Util::Logger</a>
263
+
264
+ <li><a href="../../Nucleon/Util/Package.html">Nucleon::Util::Package</a>
265
+
266
+ <li><a href="../../Nucleon/Util/SSH.html">Nucleon::Util::SSH</a>
267
+
268
+ <li><a href="../../Nucleon/Util/SSH/Keypair.html">Nucleon::Util::SSH::Keypair</a>
269
+
270
+ <li><a href="../../Nucleon/Util/Shell.html">Nucleon::Util::Shell</a>
271
+
272
+ <li><a href="../../Nucleon/Util/Shell/Result.html">Nucleon::Util::Shell::Result</a>
273
+
274
+ <li><a href="../../Hash.html">Hash</a>
275
+
276
+ <li><a href="../../Kernel.html">Kernel</a>
277
+
278
+ </ul>
279
+ </nav>
280
+
281
+ </div>
282
+ </nav>
283
+
284
+ <div id="documentation">
285
+ <h1 class="class">class Nucleon::Action::Save</h1>
286
+
287
+ <div id="description" class="description">
288
+
289
+ </div><!-- description -->
290
+
291
+
292
+
293
+
294
+ <section id="5Buntitled-5D" class="documentation-section">
295
+
296
+
297
+
298
+
299
+
300
+
301
+
302
+
303
+ <!-- Methods -->
304
+
305
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
306
+ <h3 class="section-header">Public Instance Methods</h3>
307
+
308
+
309
+ <div id="method-i-arguments" class="method-detail ">
310
+
311
+ <div class="method-heading">
312
+ <span class="method-name">arguments</span><span
313
+ class="method-args">()</span>
314
+ <span class="method-click-advice">click to toggle source</span>
315
+ </div>
316
+
317
+
318
+ <div class="method-description">
319
+
320
+
321
+
322
+
323
+
324
+ <div class="method-source-code" id="arguments-source">
325
+ <pre><span class="ruby-comment"># File lib/nucleon/action/save.rb, line 30</span>
326
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">arguments</span>
327
+ [ <span class="ruby-value">:files</span> ]
328
+ <span class="ruby-keyword">end</span></pre>
329
+ </div><!-- arguments-source -->
330
+
331
+ </div>
332
+
333
+
334
+
335
+
336
+ </div><!-- arguments-method -->
337
+
338
+
339
+ <div id="method-i-configure" class="method-detail ">
340
+
341
+ <div class="method-heading">
342
+ <span class="method-name">configure</span><span
343
+ class="method-args">()</span>
344
+ <span class="method-click-advice">click to toggle source</span>
345
+ </div>
346
+
347
+
348
+ <div class="method-description">
349
+
350
+
351
+
352
+
353
+
354
+ <div class="method-source-code" id="configure-source">
355
+ <pre><span class="ruby-comment"># File lib/nucleon/action/save.rb, line 13</span>
356
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">configure</span>
357
+ <span class="ruby-keyword">super</span> <span class="ruby-keyword">do</span>
358
+ <span class="ruby-identifier">codes</span> <span class="ruby-value">:project_failure</span>,
359
+ <span class="ruby-value">:commit_failure</span>,
360
+ <span class="ruby-value">:push_failure</span>
361
+
362
+ <span class="ruby-identifier">register</span> <span class="ruby-value">:path</span>, <span class="ruby-value">:str</span>, <span class="ruby-constant">Dir</span>.<span class="ruby-identifier">pwd</span>
363
+ <span class="ruby-identifier">register</span> <span class="ruby-value">:files</span>, <span class="ruby-value">:array</span>, <span class="ruby-string">&#39;.&#39;</span>
364
+
365
+ <span class="ruby-identifier">project_config</span>
366
+ <span class="ruby-identifier">commit_config</span>(<span class="ruby-keyword">false</span>)
367
+ <span class="ruby-identifier">push_config</span>
368
+ <span class="ruby-keyword">end</span>
369
+ <span class="ruby-keyword">end</span></pre>
370
+ </div><!-- configure-source -->
371
+
372
+ </div>
373
+
374
+
375
+
376
+
377
+ </div><!-- configure-method -->
378
+
379
+
380
+ <div id="method-i-execute" class="method-detail ">
381
+
382
+ <div class="method-heading">
383
+ <span class="method-name">execute</span><span
384
+ class="method-args">()</span>
385
+ <span class="method-click-advice">click to toggle source</span>
386
+ </div>
387
+
388
+
389
+ <div class="method-description">
390
+
391
+
392
+
393
+
394
+
395
+ <div class="method-source-code" id="execute-source">
396
+ <pre><span class="ruby-comment"># File lib/nucleon/action/save.rb, line 37</span>
397
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">execute</span>
398
+ <span class="ruby-keyword">super</span> <span class="ruby-keyword">do</span>
399
+ <span class="ruby-identifier">info</span>(<span class="ruby-string">&#39;nucleon.actions.save.start&#39;</span>)
400
+
401
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">project</span> = <span class="ruby-identifier">project_load</span>(<span class="ruby-identifier">settings</span>[<span class="ruby-value">:path</span>], <span class="ruby-keyword">false</span>, <span class="ruby-keyword">false</span>)
402
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">commit</span>(<span class="ruby-identifier">project</span>, <span class="ruby-identifier">settings</span>[<span class="ruby-value">:files</span>])
403
+ <span class="ruby-identifier">myself</span>.<span class="ruby-identifier">status</span> = <span class="ruby-identifier">code</span>.<span class="ruby-identifier">push_failure</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">push</span>(<span class="ruby-identifier">project</span>)
404
+ <span class="ruby-keyword">else</span>
405
+ <span class="ruby-identifier">myself</span>.<span class="ruby-identifier">status</span> = <span class="ruby-identifier">code</span>.<span class="ruby-identifier">commit_failure</span>
406
+ <span class="ruby-keyword">end</span>
407
+ <span class="ruby-keyword">else</span>
408
+ <span class="ruby-identifier">myself</span>.<span class="ruby-identifier">status</span> = <span class="ruby-identifier">code</span>.<span class="ruby-identifier">project_failure</span>
409
+ <span class="ruby-keyword">end</span>
410
+ <span class="ruby-keyword">end</span>
411
+ <span class="ruby-keyword">end</span></pre>
412
+ </div><!-- execute-source -->
413
+
414
+ </div>
415
+
416
+
417
+
418
+
419
+ </div><!-- execute-method -->
420
+
421
+
422
+ </section><!-- public-instance-method-details -->
423
+
424
+ </section><!-- 5Buntitled-5D -->
425
+
426
+ </div><!-- documentation -->
427
+
428
+
429
+ <footer id="validator-badges">
430
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
431
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
432
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
433
+ </footer>
434
+
@@ -0,0 +1,381 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class Nucleon::Action::Update - 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="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/nucleon/action/update.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+ <nav id="parent-class-section" class="section">
60
+ <h3 class="section-header">Parent</h3>
61
+
62
+ <p class="link">Nucleon.plugin_class(:action)
63
+
64
+ </nav>
65
+
66
+ <!-- Included Modules -->
67
+ <nav id="includes-section" class="section">
68
+ <h3 class="section-header">Included Modules</h3>
69
+
70
+ <ul class="link-list">
71
+
72
+
73
+ <li><a class="include" href="../Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
74
+
75
+
76
+ </ul>
77
+ </nav>
78
+
79
+ <!-- Method Quickref -->
80
+ <nav id="method-list-section" class="section">
81
+ <h3 class="section-header">Methods</h3>
82
+
83
+ <ul class="link-list">
84
+
85
+ <li><a href="#method-i-configure">#configure</a>
86
+
87
+ <li><a href="#method-i-execute">#execute</a>
88
+
89
+ </ul>
90
+ </nav>
91
+
92
+ </div>
93
+
94
+ <div id="project-metadata">
95
+ <nav id="fileindex-section" class="section project-section">
96
+ <h3 class="section-header">Pages</h3>
97
+
98
+ <ul>
99
+
100
+ <li class="file"><a href="../../ARCHITECTURE_rdoc.html">ARCHITECTURE</a>
101
+
102
+ <li class="file"><a href="../../README_rdoc.html">README</a>
103
+
104
+ <li class="file"><a href="../../TODO_rdoc.html">TODO</a>
105
+
106
+ </ul>
107
+ </nav>
108
+
109
+ <nav id="classindex-section" class="section project-section">
110
+ <h3 class="section-header">Class and Module Index</h3>
111
+
112
+ <ul class="link-list">
113
+
114
+ <li><a href="../../Nucleon.html">Nucleon</a>
115
+
116
+ <li><a href="../../Nucleon/Action.html">Nucleon::Action</a>
117
+
118
+ <li><a href="../../Nucleon/Action/Add.html">Nucleon::Action::Add</a>
119
+
120
+ <li><a href="../../Nucleon/Action/Create.html">Nucleon::Action::Create</a>
121
+
122
+ <li><a href="../../Nucleon/Action/Extract.html">Nucleon::Action::Extract</a>
123
+
124
+ <li><a href="../../Nucleon/Action/Remove.html">Nucleon::Action::Remove</a>
125
+
126
+ <li><a href="../../Nucleon/Action/Save.html">Nucleon::Action::Save</a>
127
+
128
+ <li><a href="../../Nucleon/Action/Update.html">Nucleon::Action::Update</a>
129
+
130
+ <li><a href="../../Nucleon/Codes.html">Nucleon::Codes</a>
131
+
132
+ <li><a href="../../Nucleon/Command.html">Nucleon::Command</a>
133
+
134
+ <li><a href="../../Nucleon/Command/Bash.html">Nucleon::Command::Bash</a>
135
+
136
+ <li><a href="../../Nucleon/Config.html">Nucleon::Config</a>
137
+
138
+ <li><a href="../../Nucleon/Config/Collection.html">Nucleon::Config::Collection</a>
139
+
140
+ <li><a href="../../Nucleon/Config/Options.html">Nucleon::Config::Options</a>
141
+
142
+ <li><a href="../../Nucleon/Core.html">Nucleon::Core</a>
143
+
144
+ <li><a href="../../Nucleon/Errors.html">Nucleon::Errors</a>
145
+
146
+ <li><a href="../../Nucleon/Errors/BatchError.html">Nucleon::Errors::BatchError</a>
147
+
148
+ <li><a href="../../Nucleon/Errors/NucleonError.html">Nucleon::Errors::NucleonError</a>
149
+
150
+ <li><a href="../../Nucleon/Errors/SSHUnavailable.html">Nucleon::Errors::SSHUnavailable</a>
151
+
152
+ <li><a href="../../Nucleon/Event.html">Nucleon::Event</a>
153
+
154
+ <li><a href="../../Nucleon/Event/Regex.html">Nucleon::Event::Regex</a>
155
+
156
+ <li><a href="../../Nucleon/Facade.html">Nucleon::Facade</a>
157
+
158
+ <li><a href="../../Nucleon/Gems.html">Nucleon::Gems</a>
159
+
160
+ <li><a href="../../Nucleon/Manager.html">Nucleon::Manager</a>
161
+
162
+ <li><a href="../../Nucleon/Mixin.html">Nucleon::Mixin</a>
163
+
164
+ <li><a href="../../Nucleon/Mixin/Action.html">Nucleon::Mixin::Action</a>
165
+
166
+ <li><a href="../../Nucleon/Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
167
+
168
+ <li><a href="../../Nucleon/Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
169
+
170
+ <li><a href="../../Nucleon/Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
171
+
172
+ <li><a href="../../Nucleon/Mixin/Colors.html">Nucleon::Mixin::Colors</a>
173
+
174
+ <li><a href="../../Nucleon/Mixin/ConfigCollection.html">Nucleon::Mixin::ConfigCollection</a>
175
+
176
+ <li><a href="../../Nucleon/Mixin/ConfigOptions.html">Nucleon::Mixin::ConfigOptions</a>
177
+
178
+ <li><a href="../../Nucleon/Mixin/Macro.html">Nucleon::Mixin::Macro</a>
179
+
180
+ <li><a href="../../Nucleon/Mixin/Macro/ObjectInterface.html">Nucleon::Mixin::Macro::ObjectInterface</a>
181
+
182
+ <li><a href="../../Nucleon/Mixin/Macro/PluginInterface.html">Nucleon::Mixin::Macro::PluginInterface</a>
183
+
184
+ <li><a href="../../Nucleon/Mixin/Settings.html">Nucleon::Mixin::Settings</a>
185
+
186
+ <li><a href="../../Nucleon/Mixin/SubConfig.html">Nucleon::Mixin::SubConfig</a>
187
+
188
+ <li><a href="../../Nucleon/Parallel.html">Nucleon::Parallel</a>
189
+
190
+ <li><a href="../../Nucleon/Parallel/ClassMethods.html">Nucleon::Parallel::ClassMethods</a>
191
+
192
+ <li><a href="../../Nucleon/Parallel/InstanceMethods.html">Nucleon::Parallel::InstanceMethods</a>
193
+
194
+ <li><a href="../../Nucleon/Plugin.html">Nucleon::Plugin</a>
195
+
196
+ <li><a href="../../Nucleon/Plugin/Action.html">Nucleon::Plugin::Action</a>
197
+
198
+ <li><a href="../../Nucleon/Plugin/Action/Option.html">Nucleon::Plugin::Action::Option</a>
199
+
200
+ <li><a href="../../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
201
+
202
+ <li><a href="../../Nucleon/Plugin/Command.html">Nucleon::Plugin::Command</a>
203
+
204
+ <li><a href="../../Nucleon/Plugin/Event.html">Nucleon::Plugin::Event</a>
205
+
206
+ <li><a href="../../Nucleon/Plugin/Extension.html">Nucleon::Plugin::Extension</a>
207
+
208
+ <li><a href="../../Nucleon/Plugin/Project.html">Nucleon::Plugin::Project</a>
209
+
210
+ <li><a href="../../Nucleon/Plugin/Template.html">Nucleon::Plugin::Template</a>
211
+
212
+ <li><a href="../../Nucleon/Plugin/Translator.html">Nucleon::Plugin::Translator</a>
213
+
214
+ <li><a href="../../Nucleon/Project.html">Nucleon::Project</a>
215
+
216
+ <li><a href="../../Nucleon/Project/Git.html">Nucleon::Project::Git</a>
217
+
218
+ <li><a href="../../Nucleon/Project/Github.html">Nucleon::Project::Github</a>
219
+
220
+ <li><a href="../../Nucleon/Template.html">Nucleon::Template</a>
221
+
222
+ <li><a href="../../Nucleon/Template/Json.html">Nucleon::Template::Json</a>
223
+
224
+ <li><a href="../../Nucleon/Template/Wrapper.html">Nucleon::Template::Wrapper</a>
225
+
226
+ <li><a href="../../Nucleon/Template/Yaml.html">Nucleon::Template::Yaml</a>
227
+
228
+ <li><a href="../../Nucleon/Translator.html">Nucleon::Translator</a>
229
+
230
+ <li><a href="../../Nucleon/Translator/Json.html">Nucleon::Translator::Json</a>
231
+
232
+ <li><a href="../../Nucleon/Translator/Yaml.html">Nucleon::Translator::Yaml</a>
233
+
234
+ <li><a href="../../Nucleon/Util.html">Nucleon::Util</a>
235
+
236
+ <li><a href="../../Nucleon/Util/CLI.html">Nucleon::Util::CLI</a>
237
+
238
+ <li><a href="../../Nucleon/Util/CLI/Parser.html">Nucleon::Util::CLI::Parser</a>
239
+
240
+ <li><a href="../../Nucleon/Util/Cache.html">Nucleon::Util::Cache</a>
241
+
242
+ <li><a href="../../Nucleon/Util/Console.html">Nucleon::Util::Console</a>
243
+
244
+ <li><a href="../../Nucleon/Util/Data.html">Nucleon::Util::Data</a>
245
+
246
+ <li><a href="../../Nucleon/Util/Disk.html">Nucleon::Util::Disk</a>
247
+
248
+ <li><a href="../../Nucleon/Util/Git.html">Nucleon::Util::Git</a>
249
+
250
+ <li><a href="../../Nucleon/Util/Liquid.html">Nucleon::Util::Liquid</a>
251
+
252
+ <li><a href="../../Nucleon/Util/Logger.html">Nucleon::Util::Logger</a>
253
+
254
+ <li><a href="../../Nucleon/Util/Package.html">Nucleon::Util::Package</a>
255
+
256
+ <li><a href="../../Nucleon/Util/SSH.html">Nucleon::Util::SSH</a>
257
+
258
+ <li><a href="../../Nucleon/Util/SSH/Keypair.html">Nucleon::Util::SSH::Keypair</a>
259
+
260
+ <li><a href="../../Nucleon/Util/Shell.html">Nucleon::Util::Shell</a>
261
+
262
+ <li><a href="../../Nucleon/Util/Shell/Result.html">Nucleon::Util::Shell::Result</a>
263
+
264
+ <li><a href="../../Hash.html">Hash</a>
265
+
266
+ <li><a href="../../Kernel.html">Kernel</a>
267
+
268
+ </ul>
269
+ </nav>
270
+
271
+ </div>
272
+ </nav>
273
+
274
+ <div id="documentation">
275
+ <h1 class="class">class Nucleon::Action::Update</h1>
276
+
277
+ <div id="description" class="description">
278
+
279
+ </div><!-- description -->
280
+
281
+
282
+
283
+
284
+ <section id="5Buntitled-5D" class="documentation-section">
285
+
286
+
287
+
288
+
289
+
290
+
291
+
292
+
293
+ <!-- Methods -->
294
+
295
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
296
+ <h3 class="section-header">Public Instance Methods</h3>
297
+
298
+
299
+ <div id="method-i-configure" class="method-detail ">
300
+
301
+ <div class="method-heading">
302
+ <span class="method-name">configure</span><span
303
+ class="method-args">()</span>
304
+ <span class="method-click-advice">click to toggle source</span>
305
+ </div>
306
+
307
+
308
+ <div class="method-description">
309
+
310
+
311
+
312
+
313
+
314
+ <div class="method-source-code" id="configure-source">
315
+ <pre><span class="ruby-comment"># File lib/nucleon/action/update.rb, line 11</span>
316
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">configure</span>
317
+ <span class="ruby-keyword">super</span> <span class="ruby-keyword">do</span>
318
+ <span class="ruby-identifier">codes</span> <span class="ruby-value">:project_failure</span>
319
+
320
+ <span class="ruby-identifier">register</span> <span class="ruby-value">:path</span>, <span class="ruby-value">:str</span>, <span class="ruby-constant">Dir</span>.<span class="ruby-identifier">pwd</span>
321
+ <span class="ruby-identifier">project_config</span>
322
+ <span class="ruby-keyword">end</span>
323
+ <span class="ruby-keyword">end</span></pre>
324
+ </div><!-- configure-source -->
325
+
326
+ </div>
327
+
328
+
329
+
330
+
331
+ </div><!-- configure-method -->
332
+
333
+
334
+ <div id="method-i-execute" class="method-detail ">
335
+
336
+ <div class="method-heading">
337
+ <span class="method-name">execute</span><span
338
+ class="method-args">()</span>
339
+ <span class="method-click-advice">click to toggle source</span>
340
+ </div>
341
+
342
+
343
+ <div class="method-description">
344
+
345
+
346
+
347
+
348
+
349
+ <div class="method-source-code" id="execute-source">
350
+ <pre><span class="ruby-comment"># File lib/nucleon/action/update.rb, line 23</span>
351
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">execute</span>
352
+ <span class="ruby-keyword">super</span> <span class="ruby-keyword">do</span>
353
+ <span class="ruby-identifier">info</span>(<span class="ruby-string">&#39;nucleon.actions.update.start&#39;</span>)
354
+
355
+ <span class="ruby-identifier">project</span> = <span class="ruby-identifier">project_load</span>(<span class="ruby-identifier">settings</span>[<span class="ruby-value">:path</span>], <span class="ruby-keyword">false</span>, <span class="ruby-keyword">true</span>)
356
+ <span class="ruby-identifier">myself</span>.<span class="ruby-identifier">status</span> = <span class="ruby-identifier">code</span>.<span class="ruby-identifier">project_failure</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">project</span>
357
+ <span class="ruby-keyword">end</span>
358
+ <span class="ruby-keyword">end</span></pre>
359
+ </div><!-- execute-source -->
360
+
361
+ </div>
362
+
363
+
364
+
365
+
366
+ </div><!-- execute-method -->
367
+
368
+
369
+ </section><!-- public-instance-method-details -->
370
+
371
+ </section><!-- 5Buntitled-5D -->
372
+
373
+ </div><!-- documentation -->
374
+
375
+
376
+ <footer id="validator-badges">
377
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
378
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
379
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
380
+ </footer>
381
+