nucleon 0.2.1 → 0.2.2

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 (144) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/lib/core/config.rb +1 -1
  4. data/lib/core/core.rb +2 -2
  5. data/lib/core/environment.rb +9 -6
  6. data/lib/core/facade.rb +2 -2
  7. data/lib/core/gems.rb +13 -6
  8. data/lib/core/manager.rb +12 -5
  9. data/lib/core/mixin/action/commit.rb +12 -6
  10. data/lib/core/mixin/action/project.rb +15 -28
  11. data/lib/core/mixin/action/push.rb +14 -5
  12. data/lib/core/mixin/action/registration.rb +277 -28
  13. data/lib/core/mixin/macro/object_interface.rb +3 -3
  14. data/lib/core/mixin/sub_config.rb +1 -1
  15. data/lib/core/plugin/action.rb +20 -51
  16. data/lib/core/plugin/base.rb +41 -8
  17. data/lib/core/plugin/project.rb +55 -8
  18. data/lib/nucleon/action/project/add.rb +6 -20
  19. data/lib/nucleon/action/project/create.rb +2 -2
  20. data/lib/nucleon/action/project/remove.rb +3 -3
  21. data/lib/nucleon/action/project/save.rb +3 -3
  22. data/lib/nucleon/action/project/update.rb +2 -2
  23. data/lib/nucleon/extension/project.rb +16 -0
  24. data/lib/nucleon/project/git.rb +1 -0
  25. data/lib/nucleon/project/github.rb +19 -7
  26. data/nucleon.gemspec +120 -2
  27. data/rdoc/site/0.2.1/ARCHITECTURE_rdoc.html +640 -0
  28. data/rdoc/site/0.2.1/Hash.html +353 -0
  29. data/rdoc/site/0.2.1/Kernel.html +420 -0
  30. data/rdoc/site/0.2.1/Nucleon.html +674 -0
  31. data/rdoc/site/0.2.1/Nucleon/Action.html +286 -0
  32. data/rdoc/site/0.2.1/Nucleon/Action/Extract.html +457 -0
  33. data/rdoc/site/0.2.1/Nucleon/Action/Project.html +285 -0
  34. data/rdoc/site/0.2.1/Nucleon/Action/Project/Add.html +502 -0
  35. data/rdoc/site/0.2.1/Nucleon/Action/Project/Create.html +459 -0
  36. data/rdoc/site/0.2.1/Nucleon/Action/Project/Remove.html +505 -0
  37. data/rdoc/site/0.2.1/Nucleon/Action/Project/Save.html +478 -0
  38. data/rdoc/site/0.2.1/Nucleon/Action/Project/Update.html +425 -0
  39. data/rdoc/site/0.2.1/Nucleon/Codes.html +569 -0
  40. data/rdoc/site/0.2.1/Nucleon/Command.html +281 -0
  41. data/rdoc/site/0.2.1/Nucleon/Command/Bash.html +550 -0
  42. data/rdoc/site/0.2.1/Nucleon/Config.html +1634 -0
  43. data/rdoc/site/0.2.1/Nucleon/Config/Collection.html +515 -0
  44. data/rdoc/site/0.2.1/Nucleon/Config/Options.html +495 -0
  45. data/rdoc/site/0.2.1/Nucleon/Core.html +641 -0
  46. data/rdoc/site/0.2.1/Nucleon/Environment.html +1210 -0
  47. data/rdoc/site/0.2.1/Nucleon/Errors.html +281 -0
  48. data/rdoc/site/0.2.1/Nucleon/Errors/BatchError.html +287 -0
  49. data/rdoc/site/0.2.1/Nucleon/Errors/NucleonError.html +663 -0
  50. data/rdoc/site/0.2.1/Nucleon/Errors/SSHUnavailable.html +287 -0
  51. data/rdoc/site/0.2.1/Nucleon/Event.html +281 -0
  52. data/rdoc/site/0.2.1/Nucleon/Event/Regex.html +473 -0
  53. data/rdoc/site/0.2.1/Nucleon/Facade.html +2452 -0
  54. data/rdoc/site/0.2.1/Nucleon/Gems.html +641 -0
  55. data/rdoc/site/0.2.1/Nucleon/Manager.html +1862 -0
  56. data/rdoc/site/0.2.1/Nucleon/Mixin.html +291 -0
  57. data/rdoc/site/0.2.1/Nucleon/Mixin/Action.html +284 -0
  58. data/rdoc/site/0.2.1/Nucleon/Mixin/Action/Commit.html +387 -0
  59. data/rdoc/site/0.2.1/Nucleon/Mixin/Action/Project.html +401 -0
  60. data/rdoc/site/0.2.1/Nucleon/Mixin/Action/Push.html +377 -0
  61. data/rdoc/site/0.2.1/Nucleon/Mixin/Action/Registration.html +575 -0
  62. data/rdoc/site/0.2.1/Nucleon/Mixin/Colors.html +551 -0
  63. data/rdoc/site/0.2.1/Nucleon/Mixin/ConfigCollection.html +487 -0
  64. data/rdoc/site/0.2.1/Nucleon/Mixin/ConfigOptions.html +455 -0
  65. data/rdoc/site/0.2.1/Nucleon/Mixin/Macro.html +282 -0
  66. data/rdoc/site/0.2.1/Nucleon/Mixin/Macro/ObjectInterface.html +701 -0
  67. data/rdoc/site/0.2.1/Nucleon/Mixin/Macro/PluginInterface.html +688 -0
  68. data/rdoc/site/0.2.1/Nucleon/Mixin/Settings.html +487 -0
  69. data/rdoc/site/0.2.1/Nucleon/Mixin/SubConfig.html +893 -0
  70. data/rdoc/site/0.2.1/Nucleon/Parallel.html +332 -0
  71. data/rdoc/site/0.2.1/Nucleon/Parallel/ClassMethods.html +331 -0
  72. data/rdoc/site/0.2.1/Nucleon/Parallel/InstanceMethods.html +458 -0
  73. data/rdoc/site/0.2.1/Nucleon/Plugin.html +288 -0
  74. data/rdoc/site/0.2.1/Nucleon/Plugin/Action.html +2133 -0
  75. data/rdoc/site/0.2.1/Nucleon/Plugin/Action/Option.html +465 -0
  76. data/rdoc/site/0.2.1/Nucleon/Plugin/Base.html +1988 -0
  77. data/rdoc/site/0.2.1/Nucleon/Plugin/Command.html +765 -0
  78. data/rdoc/site/0.2.1/Nucleon/Plugin/Event.html +448 -0
  79. data/rdoc/site/0.2.1/Nucleon/Plugin/Extension.html +287 -0
  80. data/rdoc/site/0.2.1/Nucleon/Plugin/Project.html +2900 -0
  81. data/rdoc/site/0.2.1/Nucleon/Plugin/Template.html +482 -0
  82. data/rdoc/site/0.2.1/Nucleon/Plugin/Translator.html +377 -0
  83. data/rdoc/site/0.2.1/Nucleon/Project.html +282 -0
  84. data/rdoc/site/0.2.1/Nucleon/Project/Git.html +1807 -0
  85. data/rdoc/site/0.2.1/Nucleon/Project/Github.html +555 -0
  86. data/rdoc/site/0.2.1/Nucleon/Template.html +283 -0
  87. data/rdoc/site/0.2.1/Nucleon/Template/JSON.html +335 -0
  88. data/rdoc/site/0.2.1/Nucleon/Template/Wrapper.html +335 -0
  89. data/rdoc/site/0.2.1/Nucleon/Template/YAML.html +335 -0
  90. data/rdoc/site/0.2.1/Nucleon/Translator.html +282 -0
  91. data/rdoc/site/0.2.1/Nucleon/Translator/JSON.html +372 -0
  92. data/rdoc/site/0.2.1/Nucleon/Translator/YAML.html +372 -0
  93. data/rdoc/site/0.2.1/Nucleon/Util.html +291 -0
  94. data/rdoc/site/0.2.1/Nucleon/Util/CLI.html +394 -0
  95. data/rdoc/site/0.2.1/Nucleon/Util/CLI/Parser.html +1404 -0
  96. data/rdoc/site/0.2.1/Nucleon/Util/Cache.html +824 -0
  97. data/rdoc/site/0.2.1/Nucleon/Util/Console.html +1330 -0
  98. data/rdoc/site/0.2.1/Nucleon/Util/Data.html +1423 -0
  99. data/rdoc/site/0.2.1/Nucleon/Util/Disk.html +528 -0
  100. data/rdoc/site/0.2.1/Nucleon/Util/Git.html +367 -0
  101. data/rdoc/site/0.2.1/Nucleon/Util/Liquid.html +371 -0
  102. data/rdoc/site/0.2.1/Nucleon/Util/Logger.html +822 -0
  103. data/rdoc/site/0.2.1/Nucleon/Util/Package.html +564 -0
  104. data/rdoc/site/0.2.1/Nucleon/Util/SSH.html +1036 -0
  105. data/rdoc/site/0.2.1/Nucleon/Util/SSH/Keypair.html +607 -0
  106. data/rdoc/site/0.2.1/Nucleon/Util/Shell.html +697 -0
  107. data/rdoc/site/0.2.1/Nucleon/Util/Shell/Result.html +503 -0
  108. data/rdoc/site/0.2.1/README_rdoc.html +318 -0
  109. data/rdoc/site/0.2.1/TODO_rdoc.html +267 -0
  110. data/rdoc/site/0.2.1/created.rid +62 -0
  111. data/rdoc/site/0.2.1/images/add.png +0 -0
  112. data/rdoc/site/0.2.1/images/brick.png +0 -0
  113. data/rdoc/site/0.2.1/images/brick_link.png +0 -0
  114. data/rdoc/site/0.2.1/images/bug.png +0 -0
  115. data/rdoc/site/0.2.1/images/bullet_black.png +0 -0
  116. data/rdoc/site/0.2.1/images/bullet_toggle_minus.png +0 -0
  117. data/rdoc/site/0.2.1/images/bullet_toggle_plus.png +0 -0
  118. data/rdoc/site/0.2.1/images/date.png +0 -0
  119. data/rdoc/site/0.2.1/images/delete.png +0 -0
  120. data/rdoc/site/0.2.1/images/find.png +0 -0
  121. data/rdoc/site/0.2.1/images/loadingAnimation.gif +0 -0
  122. data/rdoc/site/0.2.1/images/macFFBgHack.png +0 -0
  123. data/rdoc/site/0.2.1/images/package.png +0 -0
  124. data/rdoc/site/0.2.1/images/page_green.png +0 -0
  125. data/rdoc/site/0.2.1/images/page_white_text.png +0 -0
  126. data/rdoc/site/0.2.1/images/page_white_width.png +0 -0
  127. data/rdoc/site/0.2.1/images/plugin.png +0 -0
  128. data/rdoc/site/0.2.1/images/ruby.png +0 -0
  129. data/rdoc/site/0.2.1/images/tag_blue.png +0 -0
  130. data/rdoc/site/0.2.1/images/tag_green.png +0 -0
  131. data/rdoc/site/0.2.1/images/transparent.png +0 -0
  132. data/rdoc/site/0.2.1/images/wrench.png +0 -0
  133. data/rdoc/site/0.2.1/images/wrench_orange.png +0 -0
  134. data/rdoc/site/0.2.1/images/zoom.png +0 -0
  135. data/rdoc/site/0.2.1/index.html +317 -0
  136. data/rdoc/site/0.2.1/js/darkfish.js +155 -0
  137. data/rdoc/site/0.2.1/js/jquery.js +18 -0
  138. data/rdoc/site/0.2.1/js/navigation.js +142 -0
  139. data/rdoc/site/0.2.1/js/search.js +94 -0
  140. data/rdoc/site/0.2.1/js/search_index.js +1 -0
  141. data/rdoc/site/0.2.1/js/searcher.js +228 -0
  142. data/rdoc/site/0.2.1/rdoc.css +543 -0
  143. data/rdoc/site/0.2.1/table_of_contents.html +1718 -0
  144. metadata +120 -2
@@ -0,0 +1,674 @@
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 - nucleon 0.2.1</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/codes.rb
51
+ <li>lib/core/config.rb
52
+ <li>lib/core/config/collection.rb
53
+ <li>lib/core/config/options.rb
54
+ <li>lib/core/core.rb
55
+ <li>lib/core/environment.rb
56
+ <li>lib/core/errors.rb
57
+ <li>lib/core/facade.rb
58
+ <li>lib/core/gems.rb
59
+ <li>lib/core/manager.rb
60
+ <li>lib/core/mixin/action/commit.rb
61
+ <li>lib/core/mixin/action/project.rb
62
+ <li>lib/core/mixin/action/push.rb
63
+ <li>lib/core/mixin/action/registration.rb
64
+ <li>lib/core/mixin/colors.rb
65
+ <li>lib/core/mixin/config/collection.rb
66
+ <li>lib/core/mixin/config/options.rb
67
+ <li>lib/core/mixin/macro/object_interface.rb
68
+ <li>lib/core/mixin/macro/plugin_interface.rb
69
+ <li>lib/core/mixin/settings.rb
70
+ <li>lib/core/mixin/sub_config.rb
71
+ <li>lib/core/plugin/action.rb
72
+ <li>lib/core/plugin/base.rb
73
+ <li>lib/core/plugin/command.rb
74
+ <li>lib/core/plugin/event.rb
75
+ <li>lib/core/plugin/extension.rb
76
+ <li>lib/core/plugin/project.rb
77
+ <li>lib/core/plugin/template.rb
78
+ <li>lib/core/plugin/translator.rb
79
+ <li>lib/core/util/cache.rb
80
+ <li>lib/core/util/cli.rb
81
+ <li>lib/core/util/console.rb
82
+ <li>lib/core/util/data.rb
83
+ <li>lib/core/util/disk.rb
84
+ <li>lib/core/util/git.rb
85
+ <li>lib/core/util/liquid.rb
86
+ <li>lib/core/util/logger.rb
87
+ <li>lib/core/util/package.rb
88
+ <li>lib/core/util/shell.rb
89
+ <li>lib/core/util/ssh.rb
90
+ <li>lib/nucleon/action/extract.rb
91
+ <li>lib/nucleon/action/project/add.rb
92
+ <li>lib/nucleon/action/project/create.rb
93
+ <li>lib/nucleon/action/project/remove.rb
94
+ <li>lib/nucleon/action/project/save.rb
95
+ <li>lib/nucleon/action/project/update.rb
96
+ <li>lib/nucleon/command/bash.rb
97
+ <li>lib/nucleon/event/regex.rb
98
+ <li>lib/nucleon/project/git.rb
99
+ <li>lib/nucleon/project/github.rb
100
+ <li>lib/nucleon/template/JSON.rb
101
+ <li>lib/nucleon/template/YAML.rb
102
+ <li>lib/nucleon/template/wrapper.rb
103
+ <li>lib/nucleon/translator/JSON.rb
104
+ <li>lib/nucleon/translator/YAML.rb
105
+ <li>lib/nucleon_base.rb
106
+ </ul>
107
+ </nav>
108
+
109
+
110
+ </div>
111
+
112
+ <div id="class-metadata">
113
+
114
+
115
+
116
+ <!-- Method Quickref -->
117
+ <nav id="method-list-section" class="section">
118
+ <h3 class="section-header">Methods</h3>
119
+
120
+ <ul class="link-list">
121
+
122
+ <li><a href="#method-c-VERSION">::VERSION</a>
123
+
124
+ <li><a href="#method-c-console_lock">::console_lock</a>
125
+
126
+ <li><a href="#method-c-debug_break">::debug_break</a>
127
+
128
+ <li><a href="#method-c-debugging-3F">::debugging?</a>
129
+
130
+ <li><a href="#method-c-dump_enabled">::dump_enabled</a>
131
+
132
+ <li><a href="#method-c-dump_enabled-3D">::dump_enabled=</a>
133
+
134
+ <li><a href="#method-c-parallel-3F">::parallel?</a>
135
+
136
+ </ul>
137
+ </nav>
138
+
139
+ </div>
140
+
141
+ <div id="project-metadata">
142
+ <nav id="fileindex-section" class="section project-section">
143
+ <h3 class="section-header">Pages</h3>
144
+
145
+ <ul>
146
+
147
+ <li class="file"><a href="./ARCHITECTURE_rdoc.html">ARCHITECTURE</a>
148
+
149
+ <li class="file"><a href="./README_rdoc.html">README</a>
150
+
151
+ <li class="file"><a href="./TODO_rdoc.html">TODO</a>
152
+
153
+ </ul>
154
+ </nav>
155
+
156
+ <nav id="classindex-section" class="section project-section">
157
+ <h3 class="section-header">Class and Module Index</h3>
158
+
159
+ <ul class="link-list">
160
+
161
+ <li><a href="./Nucleon.html">Nucleon</a>
162
+
163
+ <li><a href="./Nucleon/Action.html">Nucleon::Action</a>
164
+
165
+ <li><a href="./Nucleon/Action/Extract.html">Nucleon::Action::Extract</a>
166
+
167
+ <li><a href="./Nucleon/Action/Project.html">Nucleon::Action::Project</a>
168
+
169
+ <li><a href="./Nucleon/Action/Project/Add.html">Nucleon::Action::Project::Add</a>
170
+
171
+ <li><a href="./Nucleon/Action/Project/Create.html">Nucleon::Action::Project::Create</a>
172
+
173
+ <li><a href="./Nucleon/Action/Project/Remove.html">Nucleon::Action::Project::Remove</a>
174
+
175
+ <li><a href="./Nucleon/Action/Project/Save.html">Nucleon::Action::Project::Save</a>
176
+
177
+ <li><a href="./Nucleon/Action/Project/Update.html">Nucleon::Action::Project::Update</a>
178
+
179
+ <li><a href="./Nucleon/Codes.html">Nucleon::Codes</a>
180
+
181
+ <li><a href="./Nucleon/Command.html">Nucleon::Command</a>
182
+
183
+ <li><a href="./Nucleon/Command/Bash.html">Nucleon::Command::Bash</a>
184
+
185
+ <li><a href="./Nucleon/Config.html">Nucleon::Config</a>
186
+
187
+ <li><a href="./Nucleon/Config/Collection.html">Nucleon::Config::Collection</a>
188
+
189
+ <li><a href="./Nucleon/Config/Options.html">Nucleon::Config::Options</a>
190
+
191
+ <li><a href="./Nucleon/Core.html">Nucleon::Core</a>
192
+
193
+ <li><a href="./Nucleon/Environment.html">Nucleon::Environment</a>
194
+
195
+ <li><a href="./Nucleon/Errors.html">Nucleon::Errors</a>
196
+
197
+ <li><a href="./Nucleon/Errors/BatchError.html">Nucleon::Errors::BatchError</a>
198
+
199
+ <li><a href="./Nucleon/Errors/NucleonError.html">Nucleon::Errors::NucleonError</a>
200
+
201
+ <li><a href="./Nucleon/Errors/SSHUnavailable.html">Nucleon::Errors::SSHUnavailable</a>
202
+
203
+ <li><a href="./Nucleon/Event.html">Nucleon::Event</a>
204
+
205
+ <li><a href="./Nucleon/Event/Regex.html">Nucleon::Event::Regex</a>
206
+
207
+ <li><a href="./Nucleon/Facade.html">Nucleon::Facade</a>
208
+
209
+ <li><a href="./Nucleon/Gems.html">Nucleon::Gems</a>
210
+
211
+ <li><a href="./Nucleon/Manager.html">Nucleon::Manager</a>
212
+
213
+ <li><a href="./Nucleon/Mixin.html">Nucleon::Mixin</a>
214
+
215
+ <li><a href="./Nucleon/Mixin/Action.html">Nucleon::Mixin::Action</a>
216
+
217
+ <li><a href="./Nucleon/Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
218
+
219
+ <li><a href="./Nucleon/Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
220
+
221
+ <li><a href="./Nucleon/Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
222
+
223
+ <li><a href="./Nucleon/Mixin/Action/Registration.html">Nucleon::Mixin::Action::Registration</a>
224
+
225
+ <li><a href="./Nucleon/Mixin/Colors.html">Nucleon::Mixin::Colors</a>
226
+
227
+ <li><a href="./Nucleon/Mixin/ConfigCollection.html">Nucleon::Mixin::ConfigCollection</a>
228
+
229
+ <li><a href="./Nucleon/Mixin/ConfigOptions.html">Nucleon::Mixin::ConfigOptions</a>
230
+
231
+ <li><a href="./Nucleon/Mixin/Macro.html">Nucleon::Mixin::Macro</a>
232
+
233
+ <li><a href="./Nucleon/Mixin/Macro/ObjectInterface.html">Nucleon::Mixin::Macro::ObjectInterface</a>
234
+
235
+ <li><a href="./Nucleon/Mixin/Macro/PluginInterface.html">Nucleon::Mixin::Macro::PluginInterface</a>
236
+
237
+ <li><a href="./Nucleon/Mixin/Settings.html">Nucleon::Mixin::Settings</a>
238
+
239
+ <li><a href="./Nucleon/Mixin/SubConfig.html">Nucleon::Mixin::SubConfig</a>
240
+
241
+ <li><a href="./Nucleon/Parallel.html">Nucleon::Parallel</a>
242
+
243
+ <li><a href="./Nucleon/Parallel/ClassMethods.html">Nucleon::Parallel::ClassMethods</a>
244
+
245
+ <li><a href="./Nucleon/Parallel/InstanceMethods.html">Nucleon::Parallel::InstanceMethods</a>
246
+
247
+ <li><a href="./Nucleon/Plugin.html">Nucleon::Plugin</a>
248
+
249
+ <li><a href="./Nucleon/Plugin/Action.html">Nucleon::Plugin::Action</a>
250
+
251
+ <li><a href="./Nucleon/Plugin/Action/Option.html">Nucleon::Plugin::Action::Option</a>
252
+
253
+ <li><a href="./Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
254
+
255
+ <li><a href="./Nucleon/Plugin/Command.html">Nucleon::Plugin::Command</a>
256
+
257
+ <li><a href="./Nucleon/Plugin/Event.html">Nucleon::Plugin::Event</a>
258
+
259
+ <li><a href="./Nucleon/Plugin/Extension.html">Nucleon::Plugin::Extension</a>
260
+
261
+ <li><a href="./Nucleon/Plugin/Project.html">Nucleon::Plugin::Project</a>
262
+
263
+ <li><a href="./Nucleon/Plugin/Template.html">Nucleon::Plugin::Template</a>
264
+
265
+ <li><a href="./Nucleon/Plugin/Translator.html">Nucleon::Plugin::Translator</a>
266
+
267
+ <li><a href="./Nucleon/Project.html">Nucleon::Project</a>
268
+
269
+ <li><a href="./Nucleon/Project/Git.html">Nucleon::Project::Git</a>
270
+
271
+ <li><a href="./Nucleon/Project/Github.html">Nucleon::Project::Github</a>
272
+
273
+ <li><a href="./Nucleon/Template.html">Nucleon::Template</a>
274
+
275
+ <li><a href="./Nucleon/Template/JSON.html">Nucleon::Template::JSON</a>
276
+
277
+ <li><a href="./Nucleon/Template/Wrapper.html">Nucleon::Template::Wrapper</a>
278
+
279
+ <li><a href="./Nucleon/Template/YAML.html">Nucleon::Template::YAML</a>
280
+
281
+ <li><a href="./Nucleon/Translator.html">Nucleon::Translator</a>
282
+
283
+ <li><a href="./Nucleon/Translator/JSON.html">Nucleon::Translator::JSON</a>
284
+
285
+ <li><a href="./Nucleon/Translator/YAML.html">Nucleon::Translator::YAML</a>
286
+
287
+ <li><a href="./Nucleon/Util.html">Nucleon::Util</a>
288
+
289
+ <li><a href="./Nucleon/Util/CLI.html">Nucleon::Util::CLI</a>
290
+
291
+ <li><a href="./Nucleon/Util/CLI/Parser.html">Nucleon::Util::CLI::Parser</a>
292
+
293
+ <li><a href="./Nucleon/Util/Cache.html">Nucleon::Util::Cache</a>
294
+
295
+ <li><a href="./Nucleon/Util/Console.html">Nucleon::Util::Console</a>
296
+
297
+ <li><a href="./Nucleon/Util/Data.html">Nucleon::Util::Data</a>
298
+
299
+ <li><a href="./Nucleon/Util/Disk.html">Nucleon::Util::Disk</a>
300
+
301
+ <li><a href="./Nucleon/Util/Git.html">Nucleon::Util::Git</a>
302
+
303
+ <li><a href="./Nucleon/Util/Liquid.html">Nucleon::Util::Liquid</a>
304
+
305
+ <li><a href="./Nucleon/Util/Logger.html">Nucleon::Util::Logger</a>
306
+
307
+ <li><a href="./Nucleon/Util/Package.html">Nucleon::Util::Package</a>
308
+
309
+ <li><a href="./Nucleon/Util/SSH.html">Nucleon::Util::SSH</a>
310
+
311
+ <li><a href="./Nucleon/Util/SSH/Keypair.html">Nucleon::Util::SSH::Keypair</a>
312
+
313
+ <li><a href="./Nucleon/Util/Shell.html">Nucleon::Util::Shell</a>
314
+
315
+ <li><a href="./Nucleon/Util/Shell/Result.html">Nucleon::Util::Shell::Result</a>
316
+
317
+ <li><a href="./Hash.html">Hash</a>
318
+
319
+ <li><a href="./Kernel.html">Kernel</a>
320
+
321
+ </ul>
322
+ </nav>
323
+
324
+ </div>
325
+ </nav>
326
+
327
+ <div id="documentation">
328
+ <h1 class="module">module Nucleon</h1>
329
+
330
+ <div id="description" class="description">
331
+
332
+ <p>Should be included via include</p>
333
+
334
+ <p>include <a href="Nucleon/Mixin/Colors.html">Mixin::Colors</a></p>
335
+
336
+ <p>Should be included via extend</p>
337
+
338
+ <p>extend <a
339
+ href="Nucleon/Mixin/ConfigCollection.html">Mixin::ConfigCollection</a></p>
340
+
341
+ <p>Should be included via extend</p>
342
+
343
+ <p>extend <a href="Nucleon/Mixin/ConfigOptions.html">Mixin::ConfigOptions</a></p>
344
+
345
+ <p>Should be included via extend</p>
346
+
347
+ <p>extend <a
348
+ href="Nucleon/Mixin/Macro/ObjectInterface.html">Mixin::Macro::ObjectInterface</a></p>
349
+
350
+ <p>Should be included via include</p>
351
+
352
+ <p>include <a href="Nucleon/Mixin/Settings.html">Mixin::Settings</a></p>
353
+
354
+ <p>Should be included via include</p>
355
+
356
+ <p>include <a href="Nucleon/Mixin/SubConfig.html">Mixin::SubConfig</a></p>
357
+
358
+ </div><!-- description -->
359
+
360
+
361
+
362
+
363
+ <section id="5Buntitled-5D" class="documentation-section">
364
+
365
+
366
+
367
+
368
+
369
+
370
+
371
+
372
+ <!-- Methods -->
373
+
374
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section section">
375
+ <h3 class="section-header">Public Class Methods</h3>
376
+
377
+
378
+ <div id="method-c-VERSION" class="method-detail ">
379
+
380
+ <div class="method-heading">
381
+ <span class="method-name">VERSION</span><span
382
+ class="method-args">()</span>
383
+ <span class="method-click-advice">click to toggle source</span>
384
+ </div>
385
+
386
+
387
+ <div class="method-description">
388
+
389
+
390
+
391
+
392
+
393
+ <div class="method-source-code" id="VERSION-source">
394
+ <pre><span class="ruby-comment"># File lib/nucleon_base.rb, line 64</span>
395
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-constant">VERSION</span>
396
+ <span class="ruby-constant">File</span>.<span class="ruby-identifier">read</span>(<span class="ruby-constant">File</span>.<span class="ruby-identifier">join</span>(<span class="ruby-constant">File</span>.<span class="ruby-identifier">dirname</span>(<span class="ruby-keyword">__FILE__</span>), <span class="ruby-string">&#39;..&#39;</span>, <span class="ruby-string">&#39;VERSION&#39;</span>))
397
+ <span class="ruby-keyword">end</span></pre>
398
+ </div><!-- VERSION-source -->
399
+
400
+ </div>
401
+
402
+
403
+
404
+
405
+ </div><!-- VERSION-method -->
406
+
407
+
408
+ <div id="method-c-console_lock" class="method-detail ">
409
+
410
+ <div class="method-heading">
411
+ <span class="method-name">console_lock</span><span
412
+ class="method-args">()</span>
413
+ <span class="method-click-advice">click to toggle source</span>
414
+ </div>
415
+
416
+
417
+ <div class="method-description">
418
+
419
+
420
+
421
+
422
+
423
+ <div class="method-source-code" id="console_lock-source">
424
+ <pre><span class="ruby-comment"># File lib/nucleon_base.rb, line 176</span>
425
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">console_lock</span>
426
+ <span class="ruby-identifier">@@console_lock</span>
427
+ <span class="ruby-keyword">end</span></pre>
428
+ </div><!-- console_lock-source -->
429
+
430
+ </div>
431
+
432
+
433
+
434
+
435
+ </div><!-- console_lock-method -->
436
+
437
+
438
+ <div id="method-c-debug_break" class="method-detail ">
439
+
440
+ <div class="method-heading">
441
+ <span class="method-name">debug_break</span><span
442
+ class="method-args">(condition = true)</span>
443
+ <span class="method-click-advice">click to toggle source</span>
444
+ </div>
445
+
446
+
447
+ <div class="method-description">
448
+
449
+
450
+
451
+
452
+
453
+ <div class="method-source-code" id="debug_break-source">
454
+ <pre><span class="ruby-comment"># File lib/nucleon_base.rb, line 88</span>
455
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">debug_break</span>(<span class="ruby-identifier">condition</span> = <span class="ruby-keyword">true</span>)
456
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">debugging?</span>
457
+ <span class="ruby-comment">#-------------------------------------------------------------------------------</span>
458
+ <span class="ruby-comment"># Nucleon Pry powered development console</span>
459
+ <span class="ruby-comment">#</span>
460
+ <span class="ruby-comment"># Usage:</span>
461
+ <span class="ruby-comment">#</span>
462
+ <span class="ruby-comment"># * Execute nucleon (or derivative executable, ex; corl) with the NUCLEON_DEBUG</span>
463
+ <span class="ruby-comment"># environment variable set</span>
464
+ <span class="ruby-comment">#</span>
465
+ <span class="ruby-comment"># :&gt; [ sudo ] NUCLEON_DEBUG=1 nucleon &lt;args&gt;...</span>
466
+ <span class="ruby-comment">#</span>
467
+ <span class="ruby-comment"># * Call the debug_break method anywhere in the code to start a debugging </span>
468
+ <span class="ruby-comment"># session.</span>
469
+ <span class="ruby-comment">#</span>
470
+ <span class="ruby-comment"># :&gt; Nucleon.debug_break or :&gt; Nucleon.debug_break &lt;test?&gt;</span>
471
+ <span class="ruby-comment">#</span>
472
+ <span class="ruby-comment"># * Since the debugging tools don&#39;t work in parallel, parallel operations are </span>
473
+ <span class="ruby-comment"># serialized when NUCLEON_DEBUG environment variable is found.</span>
474
+ <span class="ruby-comment">#</span>
475
+ <span class="ruby-comment">#-------------------------------------------------------------------------------</span>
476
+ <span class="ruby-comment"># General information</span>
477
+ <span class="ruby-comment">#</span>
478
+ <span class="ruby-comment"># For more information on Pry: http://pryrepl.org</span>
479
+ <span class="ruby-comment"># ( https://github.com/pry/pry )</span>
480
+ <span class="ruby-comment">#</span>
481
+ <span class="ruby-comment"># Loaded plugins: stack explorer ( https://github.com/pry/pry-stack_explorer )</span>
482
+ <span class="ruby-comment"># debugger ( https://github.com/nixme/pry-debugger )</span>
483
+ <span class="ruby-comment">#</span>
484
+ <span class="ruby-comment"># For available commands and help information: [ help ]</span>
485
+ <span class="ruby-comment"># For command specific help: [ &lt;command&gt; --help ]</span>
486
+ <span class="ruby-comment">#</span>
487
+ <span class="ruby-comment">#-------------------------------------------------------------------------------</span>
488
+ <span class="ruby-comment"># General commands:</span>
489
+ <span class="ruby-comment">#</span>
490
+ <span class="ruby-comment"># :&gt; cd &lt;Class&gt; Change to inspect class (class constant)</span>
491
+ <span class="ruby-comment"># :&gt; show-method &lt;method&gt; Show source for class method</span>
492
+ <span class="ruby-comment"># :&gt; .&lt;CLI command&gt; &lt;args&gt;... Execute a CLI command (always starts with dot)</span>
493
+ <span class="ruby-comment">#</span>
494
+ <span class="ruby-comment">#-------------------------------------------------------------------------------</span>
495
+ <span class="ruby-comment"># Breakpoints</span>
496
+ <span class="ruby-comment">#</span>
497
+ <span class="ruby-comment"># :&gt; breakpoints List all defined breakpoints</span>
498
+ <span class="ruby-comment"># :&gt; break Same as breakpoints command</span>
499
+ <span class="ruby-comment">#</span>
500
+ <span class="ruby-comment"># :&gt; break &lt;Class&gt;#&lt;method&gt; Break at start of `Class#method`.</span>
501
+ <span class="ruby-comment"># :&gt; break &lt;Class&gt;#&lt;method&gt; if &lt;test?&gt; Break at `Class#method` if `test?`.</span>
502
+ <span class="ruby-comment"># :&gt; break &lt;path&gt;/&lt;ruby file&gt;:&lt;line&gt; Break at line in ruby file.</span>
503
+ <span class="ruby-comment"># :&gt; break &lt;line&gt; Break at line in current file.</span>
504
+ <span class="ruby-comment">#</span>
505
+ <span class="ruby-comment"># :&gt; break --condition &lt;breakpoint&gt; &lt;test?&gt; Change condition on breakpoint.</span>
506
+ <span class="ruby-comment"># :&gt; break --condition &lt;breakpoint&gt; Remove condition on breakpoint.</span>
507
+ <span class="ruby-comment">#</span>
508
+ <span class="ruby-comment"># :&gt; break --delete &lt;breakpoint&gt; Delete breakpoint.</span>
509
+ <span class="ruby-comment"># :&gt; break --disable-all Disable all breakpoints.</span>
510
+ <span class="ruby-comment">#</span>
511
+ <span class="ruby-comment"># :&gt; break --show &lt;breakpoint&gt; Show details about breakpoint.</span>
512
+ <span class="ruby-comment">#</span>
513
+ <span class="ruby-comment">#-------------------------------------------------------------------------------</span>
514
+ <span class="ruby-comment"># Stack inspection / traversal</span>
515
+ <span class="ruby-comment">#</span>
516
+ <span class="ruby-comment"># :&gt; show-stack Show all accessible frames in the call stack.</span>
517
+ <span class="ruby-comment"># :&gt; frame &lt;number&gt; Move to a specific frame.</span>
518
+ <span class="ruby-comment"># :&gt; up Move up one frame in the call stack.</span>
519
+ <span class="ruby-comment"># :&gt; down Move down one frame in the call stack.</span>
520
+ <span class="ruby-comment">#</span>
521
+ <span class="ruby-comment">#-------------------------------------------------------------------------------</span>
522
+ <span class="ruby-comment"># Debugging execution flow:</span>
523
+ <span class="ruby-comment">#</span>
524
+ <span class="ruby-comment"># :&gt; s = [ step | step &lt;times&gt; ] Step execution into the next line or method.</span>
525
+ <span class="ruby-comment"># :&gt; n = [ next | next &lt;times&gt; ] Step over to the next line within same frame.</span>
526
+ <span class="ruby-comment"># :&gt; f = [ finish ] Execute until current stack frame returns.</span>
527
+ <span class="ruby-comment"># :&gt; c = [ continue ] Continue program execution (end Pry session).</span>
528
+ <span class="ruby-comment">#</span>
529
+ <span class="ruby-identifier">binding</span>.<span class="ruby-identifier">pry</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">condition</span>
530
+ <span class="ruby-keyword">end</span>
531
+ <span class="ruby-keyword">end</span></pre>
532
+ </div><!-- debug_break-source -->
533
+
534
+ </div>
535
+
536
+
537
+
538
+
539
+ </div><!-- debug_break-method -->
540
+
541
+
542
+ <div id="method-c-debugging-3F" class="method-detail ">
543
+
544
+ <div class="method-heading">
545
+ <span class="method-name">debugging?</span><span
546
+ class="method-args">()</span>
547
+ <span class="method-click-advice">click to toggle source</span>
548
+ </div>
549
+
550
+
551
+ <div class="method-description">
552
+
553
+
554
+
555
+
556
+
557
+ <div class="method-source-code" id="debugging-3F-source">
558
+ <pre><span class="ruby-comment"># File lib/nucleon_base.rb, line 82</span>
559
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">debugging?</span>
560
+ <span class="ruby-constant">ENV</span>[<span class="ruby-string">&quot;NUCLEON_DEBUG&quot;</span>] <span class="ruby-operator">?</span> <span class="ruby-keyword">true</span> <span class="ruby-operator">:</span> <span class="ruby-keyword">false</span>
561
+ <span class="ruby-keyword">end</span></pre>
562
+ </div><!-- debugging-3F-source -->
563
+
564
+ </div>
565
+
566
+
567
+
568
+
569
+ </div><!-- debugging-3F-method -->
570
+
571
+
572
+ <div id="method-c-dump_enabled" class="method-detail ">
573
+
574
+ <div class="method-heading">
575
+ <span class="method-name">dump_enabled</span><span
576
+ class="method-args">()</span>
577
+ <span class="method-click-advice">click to toggle source</span>
578
+ </div>
579
+
580
+
581
+ <div class="method-description">
582
+
583
+
584
+
585
+
586
+
587
+ <div class="method-source-code" id="dump_enabled-source">
588
+ <pre><span class="ruby-comment"># File lib/nucleon_base.rb, line 76</span>
589
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">dump_enabled</span>
590
+ <span class="ruby-identifier">@@dump_enabled</span>
591
+ <span class="ruby-keyword">end</span></pre>
592
+ </div><!-- dump_enabled-source -->
593
+
594
+ </div>
595
+
596
+
597
+
598
+
599
+ </div><!-- dump_enabled-method -->
600
+
601
+
602
+ <div id="method-c-dump_enabled-3D" class="method-detail ">
603
+
604
+ <div class="method-heading">
605
+ <span class="method-name">dump_enabled=</span><span
606
+ class="method-args">(dump)</span>
607
+ <span class="method-click-advice">click to toggle source</span>
608
+ </div>
609
+
610
+
611
+ <div class="method-description">
612
+
613
+
614
+
615
+
616
+
617
+ <div class="method-source-code" id="dump_enabled-3D-source">
618
+ <pre><span class="ruby-comment"># File lib/nucleon_base.rb, line 72</span>
619
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">dump_enabled=</span><span class="ruby-identifier">dump</span>
620
+ <span class="ruby-identifier">@@dump_enabled</span> = <span class="ruby-identifier">dump</span>
621
+ <span class="ruby-keyword">end</span></pre>
622
+ </div><!-- dump_enabled-3D-source -->
623
+
624
+ </div>
625
+
626
+
627
+
628
+
629
+ </div><!-- dump_enabled-3D-method -->
630
+
631
+
632
+ <div id="method-c-parallel-3F" class="method-detail ">
633
+
634
+ <div class="method-heading">
635
+ <span class="method-name">parallel?</span><span
636
+ class="method-args">()</span>
637
+ <span class="method-click-advice">click to toggle source</span>
638
+ </div>
639
+
640
+
641
+ <div class="method-description">
642
+
643
+
644
+
645
+
646
+
647
+ <div class="method-source-code" id="parallel-3F-source">
648
+ <pre><span class="ruby-comment"># File lib/nucleon_base.rb, line 168</span>
649
+ <span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">parallel?</span>
650
+ <span class="ruby-identifier">debugging?</span> <span class="ruby-operator">||</span> <span class="ruby-constant">ENV</span>[<span class="ruby-string">&#39;NUCLEON_NO_PARALLEL&#39;</span>] <span class="ruby-operator">?</span> <span class="ruby-keyword">false</span> <span class="ruby-operator">:</span> <span class="ruby-keyword">true</span>
651
+ <span class="ruby-keyword">end</span></pre>
652
+ </div><!-- parallel-3F-source -->
653
+
654
+ </div>
655
+
656
+
657
+
658
+
659
+ </div><!-- parallel-3F-method -->
660
+
661
+
662
+ </section><!-- public-class-method-details -->
663
+
664
+ </section><!-- 5Buntitled-5D -->
665
+
666
+ </div><!-- documentation -->
667
+
668
+
669
+ <footer id="validator-badges">
670
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
671
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
672
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
673
+ </footer>
674
+