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,329 @@
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::Template::Wrapper - 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/template/wrapper.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"><a href="../Plugin/Template.html">Nucleon::Plugin::Template</a>
63
+
64
+ </nav>
65
+
66
+
67
+ <!-- Method Quickref -->
68
+ <nav id="method-list-section" class="section">
69
+ <h3 class="section-header">Methods</h3>
70
+
71
+ <ul class="link-list">
72
+
73
+ <li><a href="#method-i-render_processed">#render_processed</a>
74
+
75
+ </ul>
76
+ </nav>
77
+
78
+ </div>
79
+
80
+ <div id="project-metadata">
81
+ <nav id="fileindex-section" class="section project-section">
82
+ <h3 class="section-header">Pages</h3>
83
+
84
+ <ul>
85
+
86
+ <li class="file"><a href="../../ARCHITECTURE_rdoc.html">ARCHITECTURE</a>
87
+
88
+ <li class="file"><a href="../../README_rdoc.html">README</a>
89
+
90
+ <li class="file"><a href="../../TODO_rdoc.html">TODO</a>
91
+
92
+ </ul>
93
+ </nav>
94
+
95
+ <nav id="classindex-section" class="section project-section">
96
+ <h3 class="section-header">Class and Module Index</h3>
97
+
98
+ <ul class="link-list">
99
+
100
+ <li><a href="../../Nucleon.html">Nucleon</a>
101
+
102
+ <li><a href="../../Nucleon/Action.html">Nucleon::Action</a>
103
+
104
+ <li><a href="../../Nucleon/Action/Add.html">Nucleon::Action::Add</a>
105
+
106
+ <li><a href="../../Nucleon/Action/Create.html">Nucleon::Action::Create</a>
107
+
108
+ <li><a href="../../Nucleon/Action/Extract.html">Nucleon::Action::Extract</a>
109
+
110
+ <li><a href="../../Nucleon/Action/Remove.html">Nucleon::Action::Remove</a>
111
+
112
+ <li><a href="../../Nucleon/Action/Save.html">Nucleon::Action::Save</a>
113
+
114
+ <li><a href="../../Nucleon/Action/Update.html">Nucleon::Action::Update</a>
115
+
116
+ <li><a href="../../Nucleon/Codes.html">Nucleon::Codes</a>
117
+
118
+ <li><a href="../../Nucleon/Command.html">Nucleon::Command</a>
119
+
120
+ <li><a href="../../Nucleon/Command/Bash.html">Nucleon::Command::Bash</a>
121
+
122
+ <li><a href="../../Nucleon/Config.html">Nucleon::Config</a>
123
+
124
+ <li><a href="../../Nucleon/Config/Collection.html">Nucleon::Config::Collection</a>
125
+
126
+ <li><a href="../../Nucleon/Config/Options.html">Nucleon::Config::Options</a>
127
+
128
+ <li><a href="../../Nucleon/Core.html">Nucleon::Core</a>
129
+
130
+ <li><a href="../../Nucleon/Errors.html">Nucleon::Errors</a>
131
+
132
+ <li><a href="../../Nucleon/Errors/BatchError.html">Nucleon::Errors::BatchError</a>
133
+
134
+ <li><a href="../../Nucleon/Errors/NucleonError.html">Nucleon::Errors::NucleonError</a>
135
+
136
+ <li><a href="../../Nucleon/Errors/SSHUnavailable.html">Nucleon::Errors::SSHUnavailable</a>
137
+
138
+ <li><a href="../../Nucleon/Event.html">Nucleon::Event</a>
139
+
140
+ <li><a href="../../Nucleon/Event/Regex.html">Nucleon::Event::Regex</a>
141
+
142
+ <li><a href="../../Nucleon/Facade.html">Nucleon::Facade</a>
143
+
144
+ <li><a href="../../Nucleon/Gems.html">Nucleon::Gems</a>
145
+
146
+ <li><a href="../../Nucleon/Manager.html">Nucleon::Manager</a>
147
+
148
+ <li><a href="../../Nucleon/Mixin.html">Nucleon::Mixin</a>
149
+
150
+ <li><a href="../../Nucleon/Mixin/Action.html">Nucleon::Mixin::Action</a>
151
+
152
+ <li><a href="../../Nucleon/Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
153
+
154
+ <li><a href="../../Nucleon/Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
155
+
156
+ <li><a href="../../Nucleon/Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
157
+
158
+ <li><a href="../../Nucleon/Mixin/Colors.html">Nucleon::Mixin::Colors</a>
159
+
160
+ <li><a href="../../Nucleon/Mixin/ConfigCollection.html">Nucleon::Mixin::ConfigCollection</a>
161
+
162
+ <li><a href="../../Nucleon/Mixin/ConfigOptions.html">Nucleon::Mixin::ConfigOptions</a>
163
+
164
+ <li><a href="../../Nucleon/Mixin/Macro.html">Nucleon::Mixin::Macro</a>
165
+
166
+ <li><a href="../../Nucleon/Mixin/Macro/ObjectInterface.html">Nucleon::Mixin::Macro::ObjectInterface</a>
167
+
168
+ <li><a href="../../Nucleon/Mixin/Macro/PluginInterface.html">Nucleon::Mixin::Macro::PluginInterface</a>
169
+
170
+ <li><a href="../../Nucleon/Mixin/Settings.html">Nucleon::Mixin::Settings</a>
171
+
172
+ <li><a href="../../Nucleon/Mixin/SubConfig.html">Nucleon::Mixin::SubConfig</a>
173
+
174
+ <li><a href="../../Nucleon/Parallel.html">Nucleon::Parallel</a>
175
+
176
+ <li><a href="../../Nucleon/Parallel/ClassMethods.html">Nucleon::Parallel::ClassMethods</a>
177
+
178
+ <li><a href="../../Nucleon/Parallel/InstanceMethods.html">Nucleon::Parallel::InstanceMethods</a>
179
+
180
+ <li><a href="../../Nucleon/Plugin.html">Nucleon::Plugin</a>
181
+
182
+ <li><a href="../../Nucleon/Plugin/Action.html">Nucleon::Plugin::Action</a>
183
+
184
+ <li><a href="../../Nucleon/Plugin/Action/Option.html">Nucleon::Plugin::Action::Option</a>
185
+
186
+ <li><a href="../../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
187
+
188
+ <li><a href="../../Nucleon/Plugin/Command.html">Nucleon::Plugin::Command</a>
189
+
190
+ <li><a href="../../Nucleon/Plugin/Event.html">Nucleon::Plugin::Event</a>
191
+
192
+ <li><a href="../../Nucleon/Plugin/Extension.html">Nucleon::Plugin::Extension</a>
193
+
194
+ <li><a href="../../Nucleon/Plugin/Project.html">Nucleon::Plugin::Project</a>
195
+
196
+ <li><a href="../../Nucleon/Plugin/Template.html">Nucleon::Plugin::Template</a>
197
+
198
+ <li><a href="../../Nucleon/Plugin/Translator.html">Nucleon::Plugin::Translator</a>
199
+
200
+ <li><a href="../../Nucleon/Project.html">Nucleon::Project</a>
201
+
202
+ <li><a href="../../Nucleon/Project/Git.html">Nucleon::Project::Git</a>
203
+
204
+ <li><a href="../../Nucleon/Project/Github.html">Nucleon::Project::Github</a>
205
+
206
+ <li><a href="../../Nucleon/Template.html">Nucleon::Template</a>
207
+
208
+ <li><a href="../../Nucleon/Template/Json.html">Nucleon::Template::Json</a>
209
+
210
+ <li><a href="../../Nucleon/Template/Wrapper.html">Nucleon::Template::Wrapper</a>
211
+
212
+ <li><a href="../../Nucleon/Template/Yaml.html">Nucleon::Template::Yaml</a>
213
+
214
+ <li><a href="../../Nucleon/Translator.html">Nucleon::Translator</a>
215
+
216
+ <li><a href="../../Nucleon/Translator/Json.html">Nucleon::Translator::Json</a>
217
+
218
+ <li><a href="../../Nucleon/Translator/Yaml.html">Nucleon::Translator::Yaml</a>
219
+
220
+ <li><a href="../../Nucleon/Util.html">Nucleon::Util</a>
221
+
222
+ <li><a href="../../Nucleon/Util/CLI.html">Nucleon::Util::CLI</a>
223
+
224
+ <li><a href="../../Nucleon/Util/CLI/Parser.html">Nucleon::Util::CLI::Parser</a>
225
+
226
+ <li><a href="../../Nucleon/Util/Cache.html">Nucleon::Util::Cache</a>
227
+
228
+ <li><a href="../../Nucleon/Util/Console.html">Nucleon::Util::Console</a>
229
+
230
+ <li><a href="../../Nucleon/Util/Data.html">Nucleon::Util::Data</a>
231
+
232
+ <li><a href="../../Nucleon/Util/Disk.html">Nucleon::Util::Disk</a>
233
+
234
+ <li><a href="../../Nucleon/Util/Git.html">Nucleon::Util::Git</a>
235
+
236
+ <li><a href="../../Nucleon/Util/Liquid.html">Nucleon::Util::Liquid</a>
237
+
238
+ <li><a href="../../Nucleon/Util/Logger.html">Nucleon::Util::Logger</a>
239
+
240
+ <li><a href="../../Nucleon/Util/Package.html">Nucleon::Util::Package</a>
241
+
242
+ <li><a href="../../Nucleon/Util/SSH.html">Nucleon::Util::SSH</a>
243
+
244
+ <li><a href="../../Nucleon/Util/SSH/Keypair.html">Nucleon::Util::SSH::Keypair</a>
245
+
246
+ <li><a href="../../Nucleon/Util/Shell.html">Nucleon::Util::Shell</a>
247
+
248
+ <li><a href="../../Nucleon/Util/Shell/Result.html">Nucleon::Util::Shell::Result</a>
249
+
250
+ <li><a href="../../Hash.html">Hash</a>
251
+
252
+ <li><a href="../../Kernel.html">Kernel</a>
253
+
254
+ </ul>
255
+ </nav>
256
+
257
+ </div>
258
+ </nav>
259
+
260
+ <div id="documentation">
261
+ <h1 class="class">class Nucleon::Template::Wrapper</h1>
262
+
263
+ <div id="description" class="description">
264
+
265
+ </div><!-- description -->
266
+
267
+
268
+
269
+
270
+ <section id="5Buntitled-5D" class="documentation-section">
271
+
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+ <!-- Methods -->
280
+
281
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
282
+ <h3 class="section-header">Public Instance Methods</h3>
283
+
284
+
285
+ <div id="method-i-render_processed" class="method-detail ">
286
+
287
+ <div class="method-heading">
288
+ <span class="method-name">render_processed</span><span
289
+ class="method-args">(data)</span>
290
+ <span class="method-click-advice">click to toggle source</span>
291
+ </div>
292
+
293
+
294
+ <div class="method-description">
295
+
296
+
297
+
298
+
299
+
300
+ <div class="method-source-code" id="render_processed-source">
301
+ <pre><span class="ruby-comment"># File lib/nucleon/template/wrapper.rb, line 9</span>
302
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">render_processed</span>(<span class="ruby-identifier">data</span>)
303
+ <span class="ruby-keyword">return</span> <span class="ruby-keyword">super</span> <span class="ruby-keyword">do</span>
304
+ <span class="ruby-identifier">get</span>(<span class="ruby-value">:template_prefix</span>, <span class="ruby-string">&#39;&#39;</span>) <span class="ruby-operator">+</span> <span class="ruby-identifier">data</span>.<span class="ruby-identifier">to_s</span> <span class="ruby-operator">+</span> <span class="ruby-identifier">get</span>(<span class="ruby-value">:template_suffix</span>, <span class="ruby-string">&#39;&#39;</span>)
305
+ <span class="ruby-keyword">end</span>
306
+ <span class="ruby-keyword">end</span></pre>
307
+ </div><!-- render_processed-source -->
308
+
309
+ </div>
310
+
311
+
312
+
313
+
314
+ </div><!-- render_processed-method -->
315
+
316
+
317
+ </section><!-- public-instance-method-details -->
318
+
319
+ </section><!-- 5Buntitled-5D -->
320
+
321
+ </div><!-- documentation -->
322
+
323
+
324
+ <footer id="validator-badges">
325
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
326
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
327
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
328
+ </footer>
329
+
@@ -0,0 +1,329 @@
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::Template::Yaml - 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/template/yaml.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"><a href="../Plugin/Template.html">Nucleon::Plugin::Template</a>
63
+
64
+ </nav>
65
+
66
+
67
+ <!-- Method Quickref -->
68
+ <nav id="method-list-section" class="section">
69
+ <h3 class="section-header">Methods</h3>
70
+
71
+ <ul class="link-list">
72
+
73
+ <li><a href="#method-i-render_processed">#render_processed</a>
74
+
75
+ </ul>
76
+ </nav>
77
+
78
+ </div>
79
+
80
+ <div id="project-metadata">
81
+ <nav id="fileindex-section" class="section project-section">
82
+ <h3 class="section-header">Pages</h3>
83
+
84
+ <ul>
85
+
86
+ <li class="file"><a href="../../ARCHITECTURE_rdoc.html">ARCHITECTURE</a>
87
+
88
+ <li class="file"><a href="../../README_rdoc.html">README</a>
89
+
90
+ <li class="file"><a href="../../TODO_rdoc.html">TODO</a>
91
+
92
+ </ul>
93
+ </nav>
94
+
95
+ <nav id="classindex-section" class="section project-section">
96
+ <h3 class="section-header">Class and Module Index</h3>
97
+
98
+ <ul class="link-list">
99
+
100
+ <li><a href="../../Nucleon.html">Nucleon</a>
101
+
102
+ <li><a href="../../Nucleon/Action.html">Nucleon::Action</a>
103
+
104
+ <li><a href="../../Nucleon/Action/Add.html">Nucleon::Action::Add</a>
105
+
106
+ <li><a href="../../Nucleon/Action/Create.html">Nucleon::Action::Create</a>
107
+
108
+ <li><a href="../../Nucleon/Action/Extract.html">Nucleon::Action::Extract</a>
109
+
110
+ <li><a href="../../Nucleon/Action/Remove.html">Nucleon::Action::Remove</a>
111
+
112
+ <li><a href="../../Nucleon/Action/Save.html">Nucleon::Action::Save</a>
113
+
114
+ <li><a href="../../Nucleon/Action/Update.html">Nucleon::Action::Update</a>
115
+
116
+ <li><a href="../../Nucleon/Codes.html">Nucleon::Codes</a>
117
+
118
+ <li><a href="../../Nucleon/Command.html">Nucleon::Command</a>
119
+
120
+ <li><a href="../../Nucleon/Command/Bash.html">Nucleon::Command::Bash</a>
121
+
122
+ <li><a href="../../Nucleon/Config.html">Nucleon::Config</a>
123
+
124
+ <li><a href="../../Nucleon/Config/Collection.html">Nucleon::Config::Collection</a>
125
+
126
+ <li><a href="../../Nucleon/Config/Options.html">Nucleon::Config::Options</a>
127
+
128
+ <li><a href="../../Nucleon/Core.html">Nucleon::Core</a>
129
+
130
+ <li><a href="../../Nucleon/Errors.html">Nucleon::Errors</a>
131
+
132
+ <li><a href="../../Nucleon/Errors/BatchError.html">Nucleon::Errors::BatchError</a>
133
+
134
+ <li><a href="../../Nucleon/Errors/NucleonError.html">Nucleon::Errors::NucleonError</a>
135
+
136
+ <li><a href="../../Nucleon/Errors/SSHUnavailable.html">Nucleon::Errors::SSHUnavailable</a>
137
+
138
+ <li><a href="../../Nucleon/Event.html">Nucleon::Event</a>
139
+
140
+ <li><a href="../../Nucleon/Event/Regex.html">Nucleon::Event::Regex</a>
141
+
142
+ <li><a href="../../Nucleon/Facade.html">Nucleon::Facade</a>
143
+
144
+ <li><a href="../../Nucleon/Gems.html">Nucleon::Gems</a>
145
+
146
+ <li><a href="../../Nucleon/Manager.html">Nucleon::Manager</a>
147
+
148
+ <li><a href="../../Nucleon/Mixin.html">Nucleon::Mixin</a>
149
+
150
+ <li><a href="../../Nucleon/Mixin/Action.html">Nucleon::Mixin::Action</a>
151
+
152
+ <li><a href="../../Nucleon/Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
153
+
154
+ <li><a href="../../Nucleon/Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
155
+
156
+ <li><a href="../../Nucleon/Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
157
+
158
+ <li><a href="../../Nucleon/Mixin/Colors.html">Nucleon::Mixin::Colors</a>
159
+
160
+ <li><a href="../../Nucleon/Mixin/ConfigCollection.html">Nucleon::Mixin::ConfigCollection</a>
161
+
162
+ <li><a href="../../Nucleon/Mixin/ConfigOptions.html">Nucleon::Mixin::ConfigOptions</a>
163
+
164
+ <li><a href="../../Nucleon/Mixin/Macro.html">Nucleon::Mixin::Macro</a>
165
+
166
+ <li><a href="../../Nucleon/Mixin/Macro/ObjectInterface.html">Nucleon::Mixin::Macro::ObjectInterface</a>
167
+
168
+ <li><a href="../../Nucleon/Mixin/Macro/PluginInterface.html">Nucleon::Mixin::Macro::PluginInterface</a>
169
+
170
+ <li><a href="../../Nucleon/Mixin/Settings.html">Nucleon::Mixin::Settings</a>
171
+
172
+ <li><a href="../../Nucleon/Mixin/SubConfig.html">Nucleon::Mixin::SubConfig</a>
173
+
174
+ <li><a href="../../Nucleon/Parallel.html">Nucleon::Parallel</a>
175
+
176
+ <li><a href="../../Nucleon/Parallel/ClassMethods.html">Nucleon::Parallel::ClassMethods</a>
177
+
178
+ <li><a href="../../Nucleon/Parallel/InstanceMethods.html">Nucleon::Parallel::InstanceMethods</a>
179
+
180
+ <li><a href="../../Nucleon/Plugin.html">Nucleon::Plugin</a>
181
+
182
+ <li><a href="../../Nucleon/Plugin/Action.html">Nucleon::Plugin::Action</a>
183
+
184
+ <li><a href="../../Nucleon/Plugin/Action/Option.html">Nucleon::Plugin::Action::Option</a>
185
+
186
+ <li><a href="../../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
187
+
188
+ <li><a href="../../Nucleon/Plugin/Command.html">Nucleon::Plugin::Command</a>
189
+
190
+ <li><a href="../../Nucleon/Plugin/Event.html">Nucleon::Plugin::Event</a>
191
+
192
+ <li><a href="../../Nucleon/Plugin/Extension.html">Nucleon::Plugin::Extension</a>
193
+
194
+ <li><a href="../../Nucleon/Plugin/Project.html">Nucleon::Plugin::Project</a>
195
+
196
+ <li><a href="../../Nucleon/Plugin/Template.html">Nucleon::Plugin::Template</a>
197
+
198
+ <li><a href="../../Nucleon/Plugin/Translator.html">Nucleon::Plugin::Translator</a>
199
+
200
+ <li><a href="../../Nucleon/Project.html">Nucleon::Project</a>
201
+
202
+ <li><a href="../../Nucleon/Project/Git.html">Nucleon::Project::Git</a>
203
+
204
+ <li><a href="../../Nucleon/Project/Github.html">Nucleon::Project::Github</a>
205
+
206
+ <li><a href="../../Nucleon/Template.html">Nucleon::Template</a>
207
+
208
+ <li><a href="../../Nucleon/Template/Json.html">Nucleon::Template::Json</a>
209
+
210
+ <li><a href="../../Nucleon/Template/Wrapper.html">Nucleon::Template::Wrapper</a>
211
+
212
+ <li><a href="../../Nucleon/Template/Yaml.html">Nucleon::Template::Yaml</a>
213
+
214
+ <li><a href="../../Nucleon/Translator.html">Nucleon::Translator</a>
215
+
216
+ <li><a href="../../Nucleon/Translator/Json.html">Nucleon::Translator::Json</a>
217
+
218
+ <li><a href="../../Nucleon/Translator/Yaml.html">Nucleon::Translator::Yaml</a>
219
+
220
+ <li><a href="../../Nucleon/Util.html">Nucleon::Util</a>
221
+
222
+ <li><a href="../../Nucleon/Util/CLI.html">Nucleon::Util::CLI</a>
223
+
224
+ <li><a href="../../Nucleon/Util/CLI/Parser.html">Nucleon::Util::CLI::Parser</a>
225
+
226
+ <li><a href="../../Nucleon/Util/Cache.html">Nucleon::Util::Cache</a>
227
+
228
+ <li><a href="../../Nucleon/Util/Console.html">Nucleon::Util::Console</a>
229
+
230
+ <li><a href="../../Nucleon/Util/Data.html">Nucleon::Util::Data</a>
231
+
232
+ <li><a href="../../Nucleon/Util/Disk.html">Nucleon::Util::Disk</a>
233
+
234
+ <li><a href="../../Nucleon/Util/Git.html">Nucleon::Util::Git</a>
235
+
236
+ <li><a href="../../Nucleon/Util/Liquid.html">Nucleon::Util::Liquid</a>
237
+
238
+ <li><a href="../../Nucleon/Util/Logger.html">Nucleon::Util::Logger</a>
239
+
240
+ <li><a href="../../Nucleon/Util/Package.html">Nucleon::Util::Package</a>
241
+
242
+ <li><a href="../../Nucleon/Util/SSH.html">Nucleon::Util::SSH</a>
243
+
244
+ <li><a href="../../Nucleon/Util/SSH/Keypair.html">Nucleon::Util::SSH::Keypair</a>
245
+
246
+ <li><a href="../../Nucleon/Util/Shell.html">Nucleon::Util::Shell</a>
247
+
248
+ <li><a href="../../Nucleon/Util/Shell/Result.html">Nucleon::Util::Shell::Result</a>
249
+
250
+ <li><a href="../../Hash.html">Hash</a>
251
+
252
+ <li><a href="../../Kernel.html">Kernel</a>
253
+
254
+ </ul>
255
+ </nav>
256
+
257
+ </div>
258
+ </nav>
259
+
260
+ <div id="documentation">
261
+ <h1 class="class">class Nucleon::Template::Yaml</h1>
262
+
263
+ <div id="description" class="description">
264
+
265
+ </div><!-- description -->
266
+
267
+
268
+
269
+
270
+ <section id="5Buntitled-5D" class="documentation-section">
271
+
272
+
273
+
274
+
275
+
276
+
277
+
278
+
279
+ <!-- Methods -->
280
+
281
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
282
+ <h3 class="section-header">Public Instance Methods</h3>
283
+
284
+
285
+ <div id="method-i-render_processed" class="method-detail ">
286
+
287
+ <div class="method-heading">
288
+ <span class="method-name">render_processed</span><span
289
+ class="method-args">(data)</span>
290
+ <span class="method-click-advice">click to toggle source</span>
291
+ </div>
292
+
293
+
294
+ <div class="method-description">
295
+
296
+
297
+
298
+
299
+
300
+ <div class="method-source-code" id="render_processed-source">
301
+ <pre><span class="ruby-comment"># File lib/nucleon/template/yaml.rb, line 9</span>
302
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">render_processed</span>(<span class="ruby-identifier">data</span>)
303
+ <span class="ruby-keyword">return</span> <span class="ruby-keyword">super</span> <span class="ruby-keyword">do</span>
304
+ <span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Data</span>.<span class="ruby-identifier">to_yaml</span>(<span class="ruby-identifier">data</span>)
305
+ <span class="ruby-keyword">end</span>
306
+ <span class="ruby-keyword">end</span></pre>
307
+ </div><!-- render_processed-source -->
308
+
309
+ </div>
310
+
311
+
312
+
313
+
314
+ </div><!-- render_processed-method -->
315
+
316
+
317
+ </section><!-- public-instance-method-details -->
318
+
319
+ </section><!-- 5Buntitled-5D -->
320
+
321
+ </div><!-- documentation -->
322
+
323
+
324
+ <footer id="validator-badges">
325
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
326
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
327
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
328
+ </footer>
329
+