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,371 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>module Nucleon::Mixin::Action::Push - nucleon 0.1.19</title>
8
+
9
+ <link type="text/css" media="screen" href="../../../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../../../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../../../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../../../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../../../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../../../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../../../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../../../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="module">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../../../index.html">Home</a>
28
+ <a href="../../../table_of_contents.html#classes">Classes</a>
29
+ <a href="../../../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/core/mixin/action/push.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+
60
+
61
+ <!-- Method Quickref -->
62
+ <nav id="method-list-section" class="section">
63
+ <h3 class="section-header">Methods</h3>
64
+
65
+ <ul class="link-list">
66
+
67
+ <li><a href="#method-i-push">#push</a>
68
+
69
+ <li><a href="#method-i-push_config">#push_config</a>
70
+
71
+ </ul>
72
+ </nav>
73
+
74
+ </div>
75
+
76
+ <div id="project-metadata">
77
+ <nav id="fileindex-section" class="section project-section">
78
+ <h3 class="section-header">Pages</h3>
79
+
80
+ <ul>
81
+
82
+ <li class="file"><a href="../../../ARCHITECTURE_rdoc.html">ARCHITECTURE</a>
83
+
84
+ <li class="file"><a href="../../../README_rdoc.html">README</a>
85
+
86
+ <li class="file"><a href="../../../TODO_rdoc.html">TODO</a>
87
+
88
+ </ul>
89
+ </nav>
90
+
91
+ <nav id="classindex-section" class="section project-section">
92
+ <h3 class="section-header">Class and Module Index</h3>
93
+
94
+ <ul class="link-list">
95
+
96
+ <li><a href="../../../Nucleon.html">Nucleon</a>
97
+
98
+ <li><a href="../../../Nucleon/Action.html">Nucleon::Action</a>
99
+
100
+ <li><a href="../../../Nucleon/Action/Add.html">Nucleon::Action::Add</a>
101
+
102
+ <li><a href="../../../Nucleon/Action/Create.html">Nucleon::Action::Create</a>
103
+
104
+ <li><a href="../../../Nucleon/Action/Extract.html">Nucleon::Action::Extract</a>
105
+
106
+ <li><a href="../../../Nucleon/Action/Remove.html">Nucleon::Action::Remove</a>
107
+
108
+ <li><a href="../../../Nucleon/Action/Save.html">Nucleon::Action::Save</a>
109
+
110
+ <li><a href="../../../Nucleon/Action/Update.html">Nucleon::Action::Update</a>
111
+
112
+ <li><a href="../../../Nucleon/Codes.html">Nucleon::Codes</a>
113
+
114
+ <li><a href="../../../Nucleon/Command.html">Nucleon::Command</a>
115
+
116
+ <li><a href="../../../Nucleon/Command/Bash.html">Nucleon::Command::Bash</a>
117
+
118
+ <li><a href="../../../Nucleon/Config.html">Nucleon::Config</a>
119
+
120
+ <li><a href="../../../Nucleon/Config/Collection.html">Nucleon::Config::Collection</a>
121
+
122
+ <li><a href="../../../Nucleon/Config/Options.html">Nucleon::Config::Options</a>
123
+
124
+ <li><a href="../../../Nucleon/Core.html">Nucleon::Core</a>
125
+
126
+ <li><a href="../../../Nucleon/Errors.html">Nucleon::Errors</a>
127
+
128
+ <li><a href="../../../Nucleon/Errors/BatchError.html">Nucleon::Errors::BatchError</a>
129
+
130
+ <li><a href="../../../Nucleon/Errors/NucleonError.html">Nucleon::Errors::NucleonError</a>
131
+
132
+ <li><a href="../../../Nucleon/Errors/SSHUnavailable.html">Nucleon::Errors::SSHUnavailable</a>
133
+
134
+ <li><a href="../../../Nucleon/Event.html">Nucleon::Event</a>
135
+
136
+ <li><a href="../../../Nucleon/Event/Regex.html">Nucleon::Event::Regex</a>
137
+
138
+ <li><a href="../../../Nucleon/Facade.html">Nucleon::Facade</a>
139
+
140
+ <li><a href="../../../Nucleon/Gems.html">Nucleon::Gems</a>
141
+
142
+ <li><a href="../../../Nucleon/Manager.html">Nucleon::Manager</a>
143
+
144
+ <li><a href="../../../Nucleon/Mixin.html">Nucleon::Mixin</a>
145
+
146
+ <li><a href="../../../Nucleon/Mixin/Action.html">Nucleon::Mixin::Action</a>
147
+
148
+ <li><a href="../../../Nucleon/Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
149
+
150
+ <li><a href="../../../Nucleon/Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
151
+
152
+ <li><a href="../../../Nucleon/Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
153
+
154
+ <li><a href="../../../Nucleon/Mixin/Colors.html">Nucleon::Mixin::Colors</a>
155
+
156
+ <li><a href="../../../Nucleon/Mixin/ConfigCollection.html">Nucleon::Mixin::ConfigCollection</a>
157
+
158
+ <li><a href="../../../Nucleon/Mixin/ConfigOptions.html">Nucleon::Mixin::ConfigOptions</a>
159
+
160
+ <li><a href="../../../Nucleon/Mixin/Macro.html">Nucleon::Mixin::Macro</a>
161
+
162
+ <li><a href="../../../Nucleon/Mixin/Macro/ObjectInterface.html">Nucleon::Mixin::Macro::ObjectInterface</a>
163
+
164
+ <li><a href="../../../Nucleon/Mixin/Macro/PluginInterface.html">Nucleon::Mixin::Macro::PluginInterface</a>
165
+
166
+ <li><a href="../../../Nucleon/Mixin/Settings.html">Nucleon::Mixin::Settings</a>
167
+
168
+ <li><a href="../../../Nucleon/Mixin/SubConfig.html">Nucleon::Mixin::SubConfig</a>
169
+
170
+ <li><a href="../../../Nucleon/Parallel.html">Nucleon::Parallel</a>
171
+
172
+ <li><a href="../../../Nucleon/Parallel/ClassMethods.html">Nucleon::Parallel::ClassMethods</a>
173
+
174
+ <li><a href="../../../Nucleon/Parallel/InstanceMethods.html">Nucleon::Parallel::InstanceMethods</a>
175
+
176
+ <li><a href="../../../Nucleon/Plugin.html">Nucleon::Plugin</a>
177
+
178
+ <li><a href="../../../Nucleon/Plugin/Action.html">Nucleon::Plugin::Action</a>
179
+
180
+ <li><a href="../../../Nucleon/Plugin/Action/Option.html">Nucleon::Plugin::Action::Option</a>
181
+
182
+ <li><a href="../../../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
183
+
184
+ <li><a href="../../../Nucleon/Plugin/Command.html">Nucleon::Plugin::Command</a>
185
+
186
+ <li><a href="../../../Nucleon/Plugin/Event.html">Nucleon::Plugin::Event</a>
187
+
188
+ <li><a href="../../../Nucleon/Plugin/Extension.html">Nucleon::Plugin::Extension</a>
189
+
190
+ <li><a href="../../../Nucleon/Plugin/Project.html">Nucleon::Plugin::Project</a>
191
+
192
+ <li><a href="../../../Nucleon/Plugin/Template.html">Nucleon::Plugin::Template</a>
193
+
194
+ <li><a href="../../../Nucleon/Plugin/Translator.html">Nucleon::Plugin::Translator</a>
195
+
196
+ <li><a href="../../../Nucleon/Project.html">Nucleon::Project</a>
197
+
198
+ <li><a href="../../../Nucleon/Project/Git.html">Nucleon::Project::Git</a>
199
+
200
+ <li><a href="../../../Nucleon/Project/Github.html">Nucleon::Project::Github</a>
201
+
202
+ <li><a href="../../../Nucleon/Template.html">Nucleon::Template</a>
203
+
204
+ <li><a href="../../../Nucleon/Template/Json.html">Nucleon::Template::Json</a>
205
+
206
+ <li><a href="../../../Nucleon/Template/Wrapper.html">Nucleon::Template::Wrapper</a>
207
+
208
+ <li><a href="../../../Nucleon/Template/Yaml.html">Nucleon::Template::Yaml</a>
209
+
210
+ <li><a href="../../../Nucleon/Translator.html">Nucleon::Translator</a>
211
+
212
+ <li><a href="../../../Nucleon/Translator/Json.html">Nucleon::Translator::Json</a>
213
+
214
+ <li><a href="../../../Nucleon/Translator/Yaml.html">Nucleon::Translator::Yaml</a>
215
+
216
+ <li><a href="../../../Nucleon/Util.html">Nucleon::Util</a>
217
+
218
+ <li><a href="../../../Nucleon/Util/CLI.html">Nucleon::Util::CLI</a>
219
+
220
+ <li><a href="../../../Nucleon/Util/CLI/Parser.html">Nucleon::Util::CLI::Parser</a>
221
+
222
+ <li><a href="../../../Nucleon/Util/Cache.html">Nucleon::Util::Cache</a>
223
+
224
+ <li><a href="../../../Nucleon/Util/Console.html">Nucleon::Util::Console</a>
225
+
226
+ <li><a href="../../../Nucleon/Util/Data.html">Nucleon::Util::Data</a>
227
+
228
+ <li><a href="../../../Nucleon/Util/Disk.html">Nucleon::Util::Disk</a>
229
+
230
+ <li><a href="../../../Nucleon/Util/Git.html">Nucleon::Util::Git</a>
231
+
232
+ <li><a href="../../../Nucleon/Util/Liquid.html">Nucleon::Util::Liquid</a>
233
+
234
+ <li><a href="../../../Nucleon/Util/Logger.html">Nucleon::Util::Logger</a>
235
+
236
+ <li><a href="../../../Nucleon/Util/Package.html">Nucleon::Util::Package</a>
237
+
238
+ <li><a href="../../../Nucleon/Util/SSH.html">Nucleon::Util::SSH</a>
239
+
240
+ <li><a href="../../../Nucleon/Util/SSH/Keypair.html">Nucleon::Util::SSH::Keypair</a>
241
+
242
+ <li><a href="../../../Nucleon/Util/Shell.html">Nucleon::Util::Shell</a>
243
+
244
+ <li><a href="../../../Nucleon/Util/Shell/Result.html">Nucleon::Util::Shell::Result</a>
245
+
246
+ <li><a href="../../../Hash.html">Hash</a>
247
+
248
+ <li><a href="../../../Kernel.html">Kernel</a>
249
+
250
+ </ul>
251
+ </nav>
252
+
253
+ </div>
254
+ </nav>
255
+
256
+ <div id="documentation">
257
+ <h1 class="module">module Nucleon::Mixin::Action::Push</h1>
258
+
259
+ <div id="description" class="description">
260
+
261
+ </div><!-- description -->
262
+
263
+
264
+
265
+
266
+ <section id="5Buntitled-5D" class="documentation-section">
267
+
268
+
269
+
270
+
271
+
272
+
273
+
274
+
275
+ <!-- Methods -->
276
+
277
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
278
+ <h3 class="section-header">Public Instance Methods</h3>
279
+
280
+
281
+ <div id="method-i-push" class="method-detail ">
282
+
283
+ <div class="method-heading">
284
+ <span class="method-name">push</span><span
285
+ class="method-args">(project, remote = :edit)</span>
286
+ <span class="method-click-advice">click to toggle source</span>
287
+ </div>
288
+
289
+
290
+ <div class="method-description">
291
+
292
+
293
+
294
+
295
+
296
+ <div class="method-source-code" id="push-source">
297
+ <pre><span class="ruby-comment"># File lib/core/mixin/action/push.rb, line 27</span>
298
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">push</span>(<span class="ruby-identifier">project</span>, <span class="ruby-identifier">remote</span> = <span class="ruby-value">:edit</span>)
299
+ <span class="ruby-identifier">success</span> = <span class="ruby-keyword">true</span>
300
+
301
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">project</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">settings</span>[<span class="ruby-value">:push</span>]
302
+ <span class="ruby-identifier">success</span> = <span class="ruby-identifier">project</span>.<span class="ruby-identifier">push</span>(<span class="ruby-identifier">settings</span>[<span class="ruby-value">:remote</span>], <span class="ruby-identifier">extended_config</span>(<span class="ruby-value">:push</span>, {
303
+ <span class="ruby-value">:revision</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">settings</span>[<span class="ruby-value">:revision</span>],
304
+ <span class="ruby-value">:propogate</span> =<span class="ruby-operator">&gt;</span> <span class="ruby-identifier">settings</span>[<span class="ruby-value">:propogate_push</span>]
305
+ }))
306
+ <span class="ruby-keyword">end</span>
307
+ <span class="ruby-identifier">success</span>
308
+ <span class="ruby-keyword">end</span></pre>
309
+ </div><!-- push-source -->
310
+
311
+ </div>
312
+
313
+
314
+
315
+
316
+ </div><!-- push-method -->
317
+
318
+
319
+ <div id="method-i-push_config" class="method-detail ">
320
+
321
+ <div class="method-heading">
322
+ <span class="method-name">push_config</span><span
323
+ class="method-args">(optional = true)</span>
324
+ <span class="method-click-advice">click to toggle source</span>
325
+ </div>
326
+
327
+
328
+ <div class="method-description">
329
+
330
+
331
+
332
+
333
+
334
+ <div class="method-source-code" id="push_config-source">
335
+ <pre><span class="ruby-comment"># File lib/core/mixin/action/push.rb, line 10</span>
336
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">push_config</span>(<span class="ruby-identifier">optional</span> = <span class="ruby-keyword">true</span>)
337
+
338
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">optional</span>
339
+ <span class="ruby-identifier">register</span> <span class="ruby-value">:push</span>, <span class="ruby-value">:bool</span>, <span class="ruby-keyword">false</span>, <span class="ruby-string">&#39;nucleon.core.mixin.action.push.options.push&#39;</span>
340
+ <span class="ruby-keyword">else</span>
341
+ <span class="ruby-identifier">settings</span>[<span class="ruby-value">:push</span>] = <span class="ruby-keyword">true</span>
342
+ <span class="ruby-keyword">end</span>
343
+
344
+ <span class="ruby-identifier">register</span> <span class="ruby-value">:remote</span>, <span class="ruby-value">:str</span>, <span class="ruby-value">:edit</span>, <span class="ruby-string">&#39;nucleon.core.mixin.action.push.options.remote&#39;</span>
345
+ <span class="ruby-identifier">register</span> <span class="ruby-value">:revision</span>, <span class="ruby-value">:str</span>, <span class="ruby-value">:master</span>, <span class="ruby-string">&#39;nucleon.core.mixin.action.push.options.revision&#39;</span>
346
+
347
+ <span class="ruby-identifier">register</span> <span class="ruby-value">:propogate_push</span>, <span class="ruby-value">:bool</span>, <span class="ruby-keyword">false</span>, <span class="ruby-string">&#39;nucleon.core.mixin.action.push.options.propogate_push&#39;</span>
348
+ <span class="ruby-keyword">end</span></pre>
349
+ </div><!-- push_config-source -->
350
+
351
+ </div>
352
+
353
+
354
+
355
+
356
+ </div><!-- push_config-method -->
357
+
358
+
359
+ </section><!-- public-instance-method-details -->
360
+
361
+ </section><!-- 5Buntitled-5D -->
362
+
363
+ </div><!-- documentation -->
364
+
365
+
366
+ <footer id="validator-badges">
367
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
368
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
369
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
370
+ </footer>
371
+
@@ -0,0 +1,545 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>module Nucleon::Mixin::Colors - nucleon 0.1.19</title>
8
+
9
+ <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="module">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../../index.html">Home</a>
28
+ <a href="../../table_of_contents.html#classes">Classes</a>
29
+ <a href="../../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/core/mixin/colors.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+
60
+
61
+ <!-- Method Quickref -->
62
+ <nav id="method-list-section" class="section">
63
+ <h3 class="section-header">Methods</h3>
64
+
65
+ <ul class="link-list">
66
+
67
+ <li><a href="#method-i-black">#black</a>
68
+
69
+ <li><a href="#method-i-blue">#blue</a>
70
+
71
+ <li><a href="#method-i-cyan">#cyan</a>
72
+
73
+ <li><a href="#method-i-green">#green</a>
74
+
75
+ <li><a href="#method-i-grey">#grey</a>
76
+
77
+ <li><a href="#method-i-purple">#purple</a>
78
+
79
+ <li><a href="#method-i-red">#red</a>
80
+
81
+ <li><a href="#method-i-yellow">#yellow</a>
82
+
83
+ </ul>
84
+ </nav>
85
+
86
+ </div>
87
+
88
+ <div id="project-metadata">
89
+ <nav id="fileindex-section" class="section project-section">
90
+ <h3 class="section-header">Pages</h3>
91
+
92
+ <ul>
93
+
94
+ <li class="file"><a href="../../ARCHITECTURE_rdoc.html">ARCHITECTURE</a>
95
+
96
+ <li class="file"><a href="../../README_rdoc.html">README</a>
97
+
98
+ <li class="file"><a href="../../TODO_rdoc.html">TODO</a>
99
+
100
+ </ul>
101
+ </nav>
102
+
103
+ <nav id="classindex-section" class="section project-section">
104
+ <h3 class="section-header">Class and Module Index</h3>
105
+
106
+ <ul class="link-list">
107
+
108
+ <li><a href="../../Nucleon.html">Nucleon</a>
109
+
110
+ <li><a href="../../Nucleon/Action.html">Nucleon::Action</a>
111
+
112
+ <li><a href="../../Nucleon/Action/Add.html">Nucleon::Action::Add</a>
113
+
114
+ <li><a href="../../Nucleon/Action/Create.html">Nucleon::Action::Create</a>
115
+
116
+ <li><a href="../../Nucleon/Action/Extract.html">Nucleon::Action::Extract</a>
117
+
118
+ <li><a href="../../Nucleon/Action/Remove.html">Nucleon::Action::Remove</a>
119
+
120
+ <li><a href="../../Nucleon/Action/Save.html">Nucleon::Action::Save</a>
121
+
122
+ <li><a href="../../Nucleon/Action/Update.html">Nucleon::Action::Update</a>
123
+
124
+ <li><a href="../../Nucleon/Codes.html">Nucleon::Codes</a>
125
+
126
+ <li><a href="../../Nucleon/Command.html">Nucleon::Command</a>
127
+
128
+ <li><a href="../../Nucleon/Command/Bash.html">Nucleon::Command::Bash</a>
129
+
130
+ <li><a href="../../Nucleon/Config.html">Nucleon::Config</a>
131
+
132
+ <li><a href="../../Nucleon/Config/Collection.html">Nucleon::Config::Collection</a>
133
+
134
+ <li><a href="../../Nucleon/Config/Options.html">Nucleon::Config::Options</a>
135
+
136
+ <li><a href="../../Nucleon/Core.html">Nucleon::Core</a>
137
+
138
+ <li><a href="../../Nucleon/Errors.html">Nucleon::Errors</a>
139
+
140
+ <li><a href="../../Nucleon/Errors/BatchError.html">Nucleon::Errors::BatchError</a>
141
+
142
+ <li><a href="../../Nucleon/Errors/NucleonError.html">Nucleon::Errors::NucleonError</a>
143
+
144
+ <li><a href="../../Nucleon/Errors/SSHUnavailable.html">Nucleon::Errors::SSHUnavailable</a>
145
+
146
+ <li><a href="../../Nucleon/Event.html">Nucleon::Event</a>
147
+
148
+ <li><a href="../../Nucleon/Event/Regex.html">Nucleon::Event::Regex</a>
149
+
150
+ <li><a href="../../Nucleon/Facade.html">Nucleon::Facade</a>
151
+
152
+ <li><a href="../../Nucleon/Gems.html">Nucleon::Gems</a>
153
+
154
+ <li><a href="../../Nucleon/Manager.html">Nucleon::Manager</a>
155
+
156
+ <li><a href="../../Nucleon/Mixin.html">Nucleon::Mixin</a>
157
+
158
+ <li><a href="../../Nucleon/Mixin/Action.html">Nucleon::Mixin::Action</a>
159
+
160
+ <li><a href="../../Nucleon/Mixin/Action/Commit.html">Nucleon::Mixin::Action::Commit</a>
161
+
162
+ <li><a href="../../Nucleon/Mixin/Action/Project.html">Nucleon::Mixin::Action::Project</a>
163
+
164
+ <li><a href="../../Nucleon/Mixin/Action/Push.html">Nucleon::Mixin::Action::Push</a>
165
+
166
+ <li><a href="../../Nucleon/Mixin/Colors.html">Nucleon::Mixin::Colors</a>
167
+
168
+ <li><a href="../../Nucleon/Mixin/ConfigCollection.html">Nucleon::Mixin::ConfigCollection</a>
169
+
170
+ <li><a href="../../Nucleon/Mixin/ConfigOptions.html">Nucleon::Mixin::ConfigOptions</a>
171
+
172
+ <li><a href="../../Nucleon/Mixin/Macro.html">Nucleon::Mixin::Macro</a>
173
+
174
+ <li><a href="../../Nucleon/Mixin/Macro/ObjectInterface.html">Nucleon::Mixin::Macro::ObjectInterface</a>
175
+
176
+ <li><a href="../../Nucleon/Mixin/Macro/PluginInterface.html">Nucleon::Mixin::Macro::PluginInterface</a>
177
+
178
+ <li><a href="../../Nucleon/Mixin/Settings.html">Nucleon::Mixin::Settings</a>
179
+
180
+ <li><a href="../../Nucleon/Mixin/SubConfig.html">Nucleon::Mixin::SubConfig</a>
181
+
182
+ <li><a href="../../Nucleon/Parallel.html">Nucleon::Parallel</a>
183
+
184
+ <li><a href="../../Nucleon/Parallel/ClassMethods.html">Nucleon::Parallel::ClassMethods</a>
185
+
186
+ <li><a href="../../Nucleon/Parallel/InstanceMethods.html">Nucleon::Parallel::InstanceMethods</a>
187
+
188
+ <li><a href="../../Nucleon/Plugin.html">Nucleon::Plugin</a>
189
+
190
+ <li><a href="../../Nucleon/Plugin/Action.html">Nucleon::Plugin::Action</a>
191
+
192
+ <li><a href="../../Nucleon/Plugin/Action/Option.html">Nucleon::Plugin::Action::Option</a>
193
+
194
+ <li><a href="../../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
195
+
196
+ <li><a href="../../Nucleon/Plugin/Command.html">Nucleon::Plugin::Command</a>
197
+
198
+ <li><a href="../../Nucleon/Plugin/Event.html">Nucleon::Plugin::Event</a>
199
+
200
+ <li><a href="../../Nucleon/Plugin/Extension.html">Nucleon::Plugin::Extension</a>
201
+
202
+ <li><a href="../../Nucleon/Plugin/Project.html">Nucleon::Plugin::Project</a>
203
+
204
+ <li><a href="../../Nucleon/Plugin/Template.html">Nucleon::Plugin::Template</a>
205
+
206
+ <li><a href="../../Nucleon/Plugin/Translator.html">Nucleon::Plugin::Translator</a>
207
+
208
+ <li><a href="../../Nucleon/Project.html">Nucleon::Project</a>
209
+
210
+ <li><a href="../../Nucleon/Project/Git.html">Nucleon::Project::Git</a>
211
+
212
+ <li><a href="../../Nucleon/Project/Github.html">Nucleon::Project::Github</a>
213
+
214
+ <li><a href="../../Nucleon/Template.html">Nucleon::Template</a>
215
+
216
+ <li><a href="../../Nucleon/Template/Json.html">Nucleon::Template::Json</a>
217
+
218
+ <li><a href="../../Nucleon/Template/Wrapper.html">Nucleon::Template::Wrapper</a>
219
+
220
+ <li><a href="../../Nucleon/Template/Yaml.html">Nucleon::Template::Yaml</a>
221
+
222
+ <li><a href="../../Nucleon/Translator.html">Nucleon::Translator</a>
223
+
224
+ <li><a href="../../Nucleon/Translator/Json.html">Nucleon::Translator::Json</a>
225
+
226
+ <li><a href="../../Nucleon/Translator/Yaml.html">Nucleon::Translator::Yaml</a>
227
+
228
+ <li><a href="../../Nucleon/Util.html">Nucleon::Util</a>
229
+
230
+ <li><a href="../../Nucleon/Util/CLI.html">Nucleon::Util::CLI</a>
231
+
232
+ <li><a href="../../Nucleon/Util/CLI/Parser.html">Nucleon::Util::CLI::Parser</a>
233
+
234
+ <li><a href="../../Nucleon/Util/Cache.html">Nucleon::Util::Cache</a>
235
+
236
+ <li><a href="../../Nucleon/Util/Console.html">Nucleon::Util::Console</a>
237
+
238
+ <li><a href="../../Nucleon/Util/Data.html">Nucleon::Util::Data</a>
239
+
240
+ <li><a href="../../Nucleon/Util/Disk.html">Nucleon::Util::Disk</a>
241
+
242
+ <li><a href="../../Nucleon/Util/Git.html">Nucleon::Util::Git</a>
243
+
244
+ <li><a href="../../Nucleon/Util/Liquid.html">Nucleon::Util::Liquid</a>
245
+
246
+ <li><a href="../../Nucleon/Util/Logger.html">Nucleon::Util::Logger</a>
247
+
248
+ <li><a href="../../Nucleon/Util/Package.html">Nucleon::Util::Package</a>
249
+
250
+ <li><a href="../../Nucleon/Util/SSH.html">Nucleon::Util::SSH</a>
251
+
252
+ <li><a href="../../Nucleon/Util/SSH/Keypair.html">Nucleon::Util::SSH::Keypair</a>
253
+
254
+ <li><a href="../../Nucleon/Util/Shell.html">Nucleon::Util::Shell</a>
255
+
256
+ <li><a href="../../Nucleon/Util/Shell/Result.html">Nucleon::Util::Shell::Result</a>
257
+
258
+ <li><a href="../../Hash.html">Hash</a>
259
+
260
+ <li><a href="../../Kernel.html">Kernel</a>
261
+
262
+ </ul>
263
+ </nav>
264
+
265
+ </div>
266
+ </nav>
267
+
268
+ <div id="documentation">
269
+ <h1 class="module">module Nucleon::Mixin::Colors</h1>
270
+
271
+ <div id="description" class="description">
272
+
273
+ </div><!-- description -->
274
+
275
+
276
+
277
+
278
+ <section id="5Buntitled-5D" class="documentation-section">
279
+
280
+
281
+
282
+
283
+
284
+
285
+
286
+
287
+ <!-- Methods -->
288
+
289
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
290
+ <h3 class="section-header">Public Instance Methods</h3>
291
+
292
+
293
+ <div id="method-i-black" class="method-detail ">
294
+
295
+ <div class="method-heading">
296
+ <span class="method-name">black</span><span
297
+ class="method-args">(string)</span>
298
+ <span class="method-click-advice">click to toggle source</span>
299
+ </div>
300
+
301
+
302
+ <div class="method-description">
303
+
304
+
305
+
306
+
307
+
308
+ <div class="method-source-code" id="black-source">
309
+ <pre><span class="ruby-comment"># File lib/core/mixin/colors.rb, line 11</span>
310
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">black</span>(<span class="ruby-identifier">string</span>)
311
+ <span class="ruby-operator">::</span><span class="ruby-constant">Nucleon</span><span class="ruby-operator">::</span><span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Console</span>.<span class="ruby-identifier">black</span>(<span class="ruby-identifier">string</span>)
312
+ <span class="ruby-keyword">end</span></pre>
313
+ </div><!-- black-source -->
314
+
315
+ </div>
316
+
317
+
318
+
319
+
320
+ </div><!-- black-method -->
321
+
322
+
323
+ <div id="method-i-blue" class="method-detail ">
324
+
325
+ <div class="method-heading">
326
+ <span class="method-name">blue</span><span
327
+ class="method-args">(string)</span>
328
+ <span class="method-click-advice">click to toggle source</span>
329
+ </div>
330
+
331
+
332
+ <div class="method-description">
333
+
334
+
335
+
336
+
337
+
338
+ <div class="method-source-code" id="blue-source">
339
+ <pre><span class="ruby-comment"># File lib/core/mixin/colors.rb, line 35</span>
340
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">blue</span>(<span class="ruby-identifier">string</span>)
341
+ <span class="ruby-operator">::</span><span class="ruby-constant">Nucleon</span><span class="ruby-operator">::</span><span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Console</span>.<span class="ruby-identifier">blue</span>(<span class="ruby-identifier">string</span>)
342
+ <span class="ruby-keyword">end</span></pre>
343
+ </div><!-- blue-source -->
344
+
345
+ </div>
346
+
347
+
348
+
349
+
350
+ </div><!-- blue-method -->
351
+
352
+
353
+ <div id="method-i-cyan" class="method-detail ">
354
+
355
+ <div class="method-heading">
356
+ <span class="method-name">cyan</span><span
357
+ class="method-args">(string)</span>
358
+ <span class="method-click-advice">click to toggle source</span>
359
+ </div>
360
+
361
+
362
+ <div class="method-description">
363
+
364
+
365
+
366
+
367
+
368
+ <div class="method-source-code" id="cyan-source">
369
+ <pre><span class="ruby-comment"># File lib/core/mixin/colors.rb, line 47</span>
370
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">cyan</span>(<span class="ruby-identifier">string</span>)
371
+ <span class="ruby-operator">::</span><span class="ruby-constant">Nucleon</span><span class="ruby-operator">::</span><span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Console</span>.<span class="ruby-identifier">cyan</span>(<span class="ruby-identifier">string</span>)
372
+ <span class="ruby-keyword">end</span></pre>
373
+ </div><!-- cyan-source -->
374
+
375
+ </div>
376
+
377
+
378
+
379
+
380
+ </div><!-- cyan-method -->
381
+
382
+
383
+ <div id="method-i-green" class="method-detail ">
384
+
385
+ <div class="method-heading">
386
+ <span class="method-name">green</span><span
387
+ class="method-args">(string)</span>
388
+ <span class="method-click-advice">click to toggle source</span>
389
+ </div>
390
+
391
+
392
+ <div class="method-description">
393
+
394
+
395
+
396
+
397
+
398
+ <div class="method-source-code" id="green-source">
399
+ <pre><span class="ruby-comment"># File lib/core/mixin/colors.rb, line 23</span>
400
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">green</span>(<span class="ruby-identifier">string</span>)
401
+ <span class="ruby-operator">::</span><span class="ruby-constant">Nucleon</span><span class="ruby-operator">::</span><span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Console</span>.<span class="ruby-identifier">green</span>(<span class="ruby-identifier">string</span>)
402
+ <span class="ruby-keyword">end</span></pre>
403
+ </div><!-- green-source -->
404
+
405
+ </div>
406
+
407
+
408
+
409
+
410
+ </div><!-- green-method -->
411
+
412
+
413
+ <div id="method-i-grey" class="method-detail ">
414
+
415
+ <div class="method-heading">
416
+ <span class="method-name">grey</span><span
417
+ class="method-args">(string)</span>
418
+ <span class="method-click-advice">click to toggle source</span>
419
+ </div>
420
+
421
+
422
+ <div class="method-description">
423
+
424
+
425
+
426
+
427
+
428
+ <div class="method-source-code" id="grey-source">
429
+ <pre><span class="ruby-comment"># File lib/core/mixin/colors.rb, line 53</span>
430
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">grey</span>(<span class="ruby-identifier">string</span>)
431
+ <span class="ruby-operator">::</span><span class="ruby-constant">Nucleon</span><span class="ruby-operator">::</span><span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Console</span>.<span class="ruby-identifier">grey</span>(<span class="ruby-identifier">string</span>)
432
+ <span class="ruby-keyword">end</span></pre>
433
+ </div><!-- grey-source -->
434
+
435
+ </div>
436
+
437
+
438
+
439
+
440
+ </div><!-- grey-method -->
441
+
442
+
443
+ <div id="method-i-purple" class="method-detail ">
444
+
445
+ <div class="method-heading">
446
+ <span class="method-name">purple</span><span
447
+ class="method-args">(string)</span>
448
+ <span class="method-click-advice">click to toggle source</span>
449
+ </div>
450
+
451
+
452
+ <div class="method-description">
453
+
454
+
455
+
456
+
457
+
458
+ <div class="method-source-code" id="purple-source">
459
+ <pre><span class="ruby-comment"># File lib/core/mixin/colors.rb, line 41</span>
460
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">purple</span>(<span class="ruby-identifier">string</span>)
461
+ <span class="ruby-operator">::</span><span class="ruby-constant">Nucleon</span><span class="ruby-operator">::</span><span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Console</span>.<span class="ruby-identifier">purple</span>(<span class="ruby-identifier">string</span>)
462
+ <span class="ruby-keyword">end</span></pre>
463
+ </div><!-- purple-source -->
464
+
465
+ </div>
466
+
467
+
468
+
469
+
470
+ </div><!-- purple-method -->
471
+
472
+
473
+ <div id="method-i-red" class="method-detail ">
474
+
475
+ <div class="method-heading">
476
+ <span class="method-name">red</span><span
477
+ class="method-args">(string)</span>
478
+ <span class="method-click-advice">click to toggle source</span>
479
+ </div>
480
+
481
+
482
+ <div class="method-description">
483
+
484
+
485
+
486
+
487
+
488
+ <div class="method-source-code" id="red-source">
489
+ <pre><span class="ruby-comment"># File lib/core/mixin/colors.rb, line 17</span>
490
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">red</span>(<span class="ruby-identifier">string</span>)
491
+ <span class="ruby-operator">::</span><span class="ruby-constant">Nucleon</span><span class="ruby-operator">::</span><span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Console</span>.<span class="ruby-identifier">red</span>(<span class="ruby-identifier">string</span>)
492
+ <span class="ruby-keyword">end</span></pre>
493
+ </div><!-- red-source -->
494
+
495
+ </div>
496
+
497
+
498
+
499
+
500
+ </div><!-- red-method -->
501
+
502
+
503
+ <div id="method-i-yellow" class="method-detail ">
504
+
505
+ <div class="method-heading">
506
+ <span class="method-name">yellow</span><span
507
+ class="method-args">(string)</span>
508
+ <span class="method-click-advice">click to toggle source</span>
509
+ </div>
510
+
511
+
512
+ <div class="method-description">
513
+
514
+
515
+
516
+
517
+
518
+ <div class="method-source-code" id="yellow-source">
519
+ <pre><span class="ruby-comment"># File lib/core/mixin/colors.rb, line 29</span>
520
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">yellow</span>(<span class="ruby-identifier">string</span>)
521
+ <span class="ruby-operator">::</span><span class="ruby-constant">Nucleon</span><span class="ruby-operator">::</span><span class="ruby-constant">Util</span><span class="ruby-operator">::</span><span class="ruby-constant">Console</span>.<span class="ruby-identifier">yellow</span>(<span class="ruby-identifier">string</span>)
522
+ <span class="ruby-keyword">end</span></pre>
523
+ </div><!-- yellow-source -->
524
+
525
+ </div>
526
+
527
+
528
+
529
+
530
+ </div><!-- yellow-method -->
531
+
532
+
533
+ </section><!-- public-instance-method-details -->
534
+
535
+ </section><!-- 5Buntitled-5D -->
536
+
537
+ </div><!-- documentation -->
538
+
539
+
540
+ <footer id="validator-badges">
541
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
542
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
543
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
544
+ </footer>
545
+