nucleon 0.2.0 → 0.2.1

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