sprout 1.0.35.pre → 1.1.2.pre

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sprout might be problematic. Click here for more details.

Files changed (234) hide show
  1. data/Gemfile +1 -1
  2. data/Gemfile.lock +0 -2
  3. data/README.textile +1 -1
  4. data/VERSION +1 -1
  5. data/lib/sprout/concern.rb +5 -7
  6. data/lib/sprout/daemon.rb +183 -143
  7. data/lib/sprout/executable/base.rb +564 -0
  8. data/lib/sprout/executable.rb +1 -550
  9. data/lib/sprout/generator/base.rb +2 -3
  10. data/lib/sprout/generator.rb +2 -1
  11. data/lib/sprout/generators/ruby/templates/ruby_base.rb +1 -2
  12. data/lib/sprout/library.rb +3 -3
  13. data/lib/sprout/output_buffer.rb +35 -0
  14. data/lib/sprout/process_runner.rb +68 -17
  15. data/lib/sprout/progress_bar.rb +5 -5
  16. data/lib/sprout/remote_file_target.rb +1 -1
  17. data/lib/sprout/system/base_system.rb +3 -3
  18. data/lib/sprout/system/unix_system.rb +1 -1
  19. data/lib/sprout/{test/sprout_test_case.rb → test_helper.rb} +214 -14
  20. data/lib/sprout/version.rb +1 -1
  21. data/lib/sprout.rb +133 -2
  22. data/rakefile.rb +2 -0
  23. data/test/fixtures/examples/echo_inputs.rb +1 -2
  24. data/test/fixtures/executable/fdb.rb +7 -9
  25. data/test/fixtures/executable/flex3sdk_gem/fdb +49 -18
  26. data/test/fixtures/executable/mxmlc.rb +1 -2
  27. data/test/fixtures/executable/subclass/executable_subclass.rb +0 -1
  28. data/test/fixtures/executable/subclass/executable_superclass.rb +1 -2
  29. data/test/fixtures/specification/flex4sdk.rb +35 -24
  30. data/test/unit/archive_unpacker_test.rb +1 -1
  31. data/test/unit/boolean_param_test.rb +1 -1
  32. data/test/unit/daemon_test.rb +35 -3
  33. data/test/unit/executable_option_parser_test.rb +2 -3
  34. data/test/unit/executable_param_test.rb +1 -1
  35. data/test/unit/executable_test.rb +8 -15
  36. data/test/unit/fake_other_executable.rb +1 -2
  37. data/test/unit/file_param_test.rb +1 -1
  38. data/test/unit/file_target_test.rb +1 -1
  39. data/test/unit/files_param_test.rb +1 -1
  40. data/test/unit/generator_generator_test.rb +1 -1
  41. data/test/unit/generator_test.rb +1 -1
  42. data/test/unit/library_generator_test.rb +1 -1
  43. data/test/unit/library_test.rb +1 -1
  44. data/test/unit/osx_system_test.rb +1 -1
  45. data/test/unit/path_param_test.rb +1 -1
  46. data/test/unit/paths_param_test.rb +1 -1
  47. data/test/unit/platform_test.rb +1 -1
  48. data/test/unit/process_runner_test.rb +1 -1
  49. data/test/unit/rdoc_parser_test.rb +1 -1
  50. data/test/unit/remote_file_loader_test.rb +1 -1
  51. data/test/unit/remote_file_target_test.rb +1 -1
  52. data/test/unit/ruby_feature_test.rb +1 -1
  53. data/test/unit/ruby_generator_test.rb +1 -1
  54. data/test/unit/specification_test.rb +8 -1
  55. data/test/unit/sprout_test.rb +2 -2
  56. data/test/unit/string_param_test.rb +1 -1
  57. data/test/unit/string_test.rb +1 -1
  58. data/test/unit/strings_param_test.rb +1 -1
  59. data/test/unit/test_helper.rb +33 -1
  60. data/test/unit/tool_generator_test.rb +1 -1
  61. data/test/unit/unix_system_test.rb +1 -1
  62. data/test/unit/user_test.rb +1 -1
  63. data/test/unit/vista_system_test.rb +1 -1
  64. data/test/unit/win_nix_system_test.rb +1 -1
  65. data/test/unit/win_system_test.rb +1 -1
  66. data/test-stderr.log +1 -0
  67. data/test-stdout.log +237 -0
  68. metadata +15 -190
  69. data/doc/Dir.html +0 -288
  70. data/doc/Rake/Task.html +0 -184
  71. data/doc/Sprout/ArchiveUnpacker.html +0 -1246
  72. data/doc/Sprout/Base/ClassMethods.html +0 -434
  73. data/doc/Sprout/Base.html +0 -126
  74. data/doc/Sprout/Concern.html +0 -353
  75. data/doc/Sprout/Daemon/ClassMethods.html +0 -244
  76. data/doc/Sprout/Daemon/InstanceMethods.html +0 -601
  77. data/doc/Sprout/Daemon.html +0 -166
  78. data/doc/Sprout/Errors/ArchiveUnpackerError.html +0 -125
  79. data/doc/Sprout/Errors/DestinationExistsError.html +0 -133
  80. data/doc/Sprout/Errors/DuplicateMemberError.html +0 -132
  81. data/doc/Sprout/Errors/ExecutableError.html +0 -125
  82. data/doc/Sprout/Errors/ExecutableRegistrationError.html +0 -132
  83. data/doc/Sprout/Errors/ExecutionError.html +0 -121
  84. data/doc/Sprout/Errors/GeneratorError.html +0 -125
  85. data/doc/Sprout/Errors/InvalidArgumentError.html +0 -132
  86. data/doc/Sprout/Errors/LoadError.html +0 -121
  87. data/doc/Sprout/Errors/MissingArgumentError.html +0 -132
  88. data/doc/Sprout/Errors/MissingExecutableError.html +0 -132
  89. data/doc/Sprout/Errors/MissingGeneratorError.html +0 -132
  90. data/doc/Sprout/Errors/MissingTemplateError.html +0 -132
  91. data/doc/Sprout/Errors/ProcessRunnerError.html +0 -121
  92. data/doc/Sprout/Errors/RemoteFileLoaderError.html +0 -110
  93. data/doc/Sprout/Errors/SproutError.html +0 -114
  94. data/doc/Sprout/Errors/UnknownArchiveType.html +0 -122
  95. data/doc/Sprout/Errors/UsageError.html +0 -121
  96. data/doc/Sprout/Errors/ValidationError.html +0 -121
  97. data/doc/Sprout/Errors/VersionRequirementNotMetError.html +0 -121
  98. data/doc/Sprout/Errors.html +0 -101
  99. data/doc/Sprout/Executable/Boolean.html +0 -483
  100. data/doc/Sprout/Executable/ClassMethods.html +0 -417
  101. data/doc/Sprout/Executable/CollectionParam.html +0 -483
  102. data/doc/Sprout/Executable/FileParam.html +0 -484
  103. data/doc/Sprout/Executable/Files.html +0 -292
  104. data/doc/Sprout/Executable/InstanceMethods.html +0 -2006
  105. data/doc/Sprout/Executable/Number.html +0 -141
  106. data/doc/Sprout/Executable/Param.html +0 -2818
  107. data/doc/Sprout/Executable/ParameterFactory.html +0 -232
  108. data/doc/Sprout/Executable/Path.html +0 -223
  109. data/doc/Sprout/Executable/Paths.html +0 -253
  110. data/doc/Sprout/Executable/StringParam.html +0 -213
  111. data/doc/Sprout/Executable/Strings.html +0 -167
  112. data/doc/Sprout/Executable/Url.html +0 -160
  113. data/doc/Sprout/Executable/Urls.html +0 -170
  114. data/doc/Sprout/Executable.html +0 -173
  115. data/doc/Sprout/FileTarget.html +0 -1109
  116. data/doc/Sprout/Generator/Base.html +0 -1626
  117. data/doc/Sprout/Generator/Command.html +0 -690
  118. data/doc/Sprout/Generator/DirectoryManifest.html +0 -476
  119. data/doc/Sprout/Generator/FileManifest.html +0 -572
  120. data/doc/Sprout/Generator/Manifest.html +0 -377
  121. data/doc/Sprout/Generator/TemplateManifest.html +0 -196
  122. data/doc/Sprout/Generator.html +0 -689
  123. data/doc/Sprout/GeneratorGenerator.html +0 -1018
  124. data/doc/Sprout/Library.html +0 -1141
  125. data/doc/Sprout/LibraryGenerator.html +0 -309
  126. data/doc/Sprout/Log.html +0 -496
  127. data/doc/Sprout/MXMLC.html +0 -6373
  128. data/doc/Sprout/Platform.html +0 -714
  129. data/doc/Sprout/ProcessRunner.html +0 -1352
  130. data/doc/Sprout/ProgressBar.html +0 -376
  131. data/doc/Sprout/ProgressBarImpl.html +0 -2119
  132. data/doc/Sprout/ProgressBarManager.html +0 -434
  133. data/doc/Sprout/ProgressBarOutputStream.html +0 -416
  134. data/doc/Sprout/RDocParser.html +0 -211
  135. data/doc/Sprout/RemoteFileLoader.html +0 -172
  136. data/doc/Sprout/RemoteFileTarget.html +0 -679
  137. data/doc/Sprout/ReversedProgressBar.html +0 -194
  138. data/doc/Sprout/RubyFeature/ClassMethods.html +0 -1065
  139. data/doc/Sprout/RubyFeature.html +0 -155
  140. data/doc/Sprout/RubyGenerator.html +0 -764
  141. data/doc/Sprout/Specification.html +0 -767
  142. data/doc/Sprout/System/BaseSystem.html +0 -1455
  143. data/doc/Sprout/System/JavaSystem.html +0 -122
  144. data/doc/Sprout/System/OSXSystem.html +0 -335
  145. data/doc/Sprout/System/ThreadMock.html +0 -193
  146. data/doc/Sprout/System/UnixSystem.html +0 -584
  147. data/doc/Sprout/System/VistaSystem.html +0 -251
  148. data/doc/Sprout/System/WinNixSystem.html +0 -325
  149. data/doc/Sprout/System/WinSystem.html +0 -571
  150. data/doc/Sprout/System.html +0 -191
  151. data/doc/Sprout/ToolGenerator.html +0 -931
  152. data/doc/Sprout/VERSION.html +0 -128
  153. data/doc/Sprout.html +0 -144
  154. data/doc/SproutTestCase.html +0 -1412
  155. data/doc/String.html +0 -286
  156. data/doc/_index.html +0 -1035
  157. data/doc/class_list.html +0 -36
  158. data/doc/css/common.css +0 -1
  159. data/doc/css/full_list.css +0 -53
  160. data/doc/css/style.css +0 -310
  161. data/doc/file.README.html +0 -96
  162. data/doc/file.archive_unpacker.html +0 -288
  163. data/doc/file.base.html +0 -208
  164. data/doc/file.base_system.html +0 -278
  165. data/doc/file.boolean.html +0 -135
  166. data/doc/file.collection_param.html +0 -139
  167. data/doc/file.command.html +0 -126
  168. data/doc/file.concern.html +0 -136
  169. data/doc/file.daemon.html +0 -309
  170. data/doc/file.dir.html +0 -76
  171. data/doc/file.directory_manifest.html +0 -122
  172. data/doc/file.errors.html +0 -147
  173. data/doc/file.executable.html +0 -638
  174. data/doc/file.file_manifest.html +0 -109
  175. data/doc/file.file_param.html +0 -120
  176. data/doc/file.file_target.html +0 -140
  177. data/doc/file.files.html +0 -85
  178. data/doc/file.generator.html +0 -296
  179. data/doc/file.generator_class.html +0 -72
  180. data/doc/file.generator_generator.html +0 -137
  181. data/doc/file.generator_test.html +0 -92
  182. data/doc/file.generator_test_helper.html +0 -67
  183. data/doc/file.java_system.html +0 -62
  184. data/doc/file.library.html +0 -291
  185. data/doc/file.library_generator.html +0 -74
  186. data/doc/file.log.html +0 -100
  187. data/doc/file.manifest.html +0 -67
  188. data/doc/file.mxmlc.html +0 -740
  189. data/doc/file.number.html +0 -67
  190. data/doc/file.osx_system.html +0 -79
  191. data/doc/file.param.html +0 -491
  192. data/doc/file.parameter_factory.html +0 -119
  193. data/doc/file.path.html +0 -81
  194. data/doc/file.paths.html +0 -80
  195. data/doc/file.platform.html +0 -124
  196. data/doc/file.process_runner.html +0 -224
  197. data/doc/file.progress_bar.html +0 -390
  198. data/doc/file.rdoc_parser.html +0 -145
  199. data/doc/file.remote_file_loader.html +0 -117
  200. data/doc/file.remote_file_target.html +0 -176
  201. data/doc/file.ruby_base.html +0 -64
  202. data/doc/file.ruby_feature.html +0 -244
  203. data/doc/file.ruby_generator.html +0 -118
  204. data/doc/file.ruby_input.html +0 -62
  205. data/doc/file.ruby_test_case.html +0 -78
  206. data/doc/file.ruby_test_helper.html +0 -61
  207. data/doc/file.specification.html +0 -248
  208. data/doc/file.sprout.html +0 -64
  209. data/doc/file.sprout_test_case.html +0 -280
  210. data/doc/file.string.html +0 -72
  211. data/doc/file.string_param.html +0 -76
  212. data/doc/file.strings.html +0 -71
  213. data/doc/file.system.html +0 -86
  214. data/doc/file.template_manifest.html +0 -67
  215. data/doc/file.tool.html +0 -92
  216. data/doc/file.tool_generator.html +0 -90
  217. data/doc/file.unix_system.html +0 -128
  218. data/doc/file.url.html +0 -71
  219. data/doc/file.urls.html +0 -70
  220. data/doc/file.version.html +0 -71
  221. data/doc/file.vista_system.html +0 -69
  222. data/doc/file.win_nix_system.html +0 -88
  223. data/doc/file.win_system.html +0 -129
  224. data/doc/file_list.html +0 -230
  225. data/doc/frames.html +0 -13
  226. data/doc/index.html +0 -96
  227. data/doc/js/app.js +0 -202
  228. data/doc/js/full_list.js +0 -149
  229. data/doc/js/jquery.js +0 -154
  230. data/doc/method_list.html +0 -3355
  231. data/doc/top-level-namespace.html +0 -192
  232. data/lib/sprout/base.rb +0 -121
  233. data/lib/sprout/log.rb +0 -46
  234. data/test/unit/sprout_test_helper.rb +0 -33
@@ -1,601 +0,0 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
- <head>
5
- <meta name="Content-Type" content="text/html; charset=utf-8" />
6
- <title>Module: Sprout::Daemon::InstanceMethods</title>
7
- <link rel="stylesheet" href="../../css/style.css" type="text/css" media="screen" charset="utf-8" />
8
- <link rel="stylesheet" href="../../css/common.css" type="text/css" media="screen" charset="utf-8" />
9
-
10
- <script type="text/javascript" charset="utf-8">
11
- relpath = '../..';
12
- if (relpath != '') relpath += '/';
13
- </script>
14
- <script type="text/javascript" charset="utf-8" src="../../js/jquery.js"></script>
15
- <script type="text/javascript" charset="utf-8" src="../../js/app.js"></script>
16
-
17
- </head>
18
- <body>
19
- <script type="text/javascript" charset="utf-8">
20
- if (window.top.frames.main) document.body.className = 'frames';
21
- </script>
22
-
23
- <div id="header">
24
- <div id="menu">
25
-
26
- <a href="../../_index.html">Index (I)</a> &raquo;
27
- <span class='title'><span class='object_link'><a href="../../Sprout.html" title="Sprout (module)">Sprout</a></span></span> &raquo; <span class='title'><span class='object_link'><a href="../Daemon.html" title="Sprout::Daemon (module)">Daemon</a></span></span>
28
- &raquo;
29
- <span class="title">InstanceMethods</span>
30
-
31
-
32
- <div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
33
- </div>
34
-
35
- <div id="search">
36
- <a id="class_list_link" href="#">Class List</a>
37
- <a id="method_list_link" href="#">Method List</a>
38
- <a id ="file_list_link" href="#">File List</a>
39
- </div>
40
-
41
- <div class="clear"></div>
42
- </div>
43
-
44
- <iframe id="search_frame"></iframe>
45
-
46
- <div id="content"><h1>Module: Sprout::Daemon::InstanceMethods
47
-
48
-
49
-
50
- </h1>
51
-
52
- <dl class="box">
53
-
54
-
55
-
56
-
57
-
58
-
59
-
60
-
61
- <dt class="r1 last">Defined in:</dt>
62
- <dd class="r1 last">lib/sprout/daemon.rb</dd>
63
-
64
- </dl>
65
- <div class="clear"></div>
66
-
67
- <h2>Overview</h2><div class="docstring">
68
- <div class="discussion">
69
-
70
- <p>Instance methods that will be available on any class that includes
71
- Sprout::Daemon.</p>
72
-
73
-
74
- </div>
75
- </div>
76
- <div class="tags">
77
-
78
- </div>
79
-
80
- <h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
81
- <ul class="summary">
82
-
83
- <li class="public ">
84
- <span class="summary_signature">
85
-
86
- <a href="#action_stack-instance_method" title="#action_stack (instance method)">- (Object) <strong>action_stack</strong> </a>
87
-
88
-
89
-
90
- </span>
91
-
92
-
93
- <span class="note title readonly">readonly</span>
94
-
95
-
96
-
97
-
98
-
99
-
100
-
101
-
102
- <span class="summary_desc"><div class='inline'>
103
- <p>This is the array of actions that have been provided at the class level to
104
- this instance.</p>
105
- </div></span>
106
-
107
- </li>
108
-
109
-
110
- <li class="public ">
111
- <span class="summary_signature">
112
-
113
- <a href="#prompt-instance_method" title="#prompt (instance method)">- (Object) <strong>prompt</strong> </a>
114
-
115
-
116
-
117
- </span>
118
-
119
-
120
-
121
-
122
-
123
-
124
-
125
-
126
-
127
-
128
-
129
- <span class="summary_desc"><div class='inline'>
130
- <p>The prompt expression for this daemon process.</p>
131
- </div></span>
132
-
133
- </li>
134
-
135
-
136
- </ul>
137
-
138
-
139
-
140
- <h2>
141
- Instance Method Summary
142
- <small>(<a href="#" class="summary_toggle">collapse</a>)</small>
143
- </h2>
144
-
145
- <ul class="summary">
146
-
147
- <li class="protected ">
148
- <span class="summary_signature">
149
-
150
- <a href="#create_outer_task-instance_method" title="#create_outer_task (instance method)">- (Object) <strong>create_outer_task</strong>(*args) </a>
151
-
152
-
153
-
154
- </span>
155
-
156
-
157
- <span class="note title protected">protected</span>
158
-
159
-
160
-
161
-
162
-
163
- <span class="summary_desc"><div class='inline'>
164
- <p>This is the override of the underlying Sprout::Executable template method
165
- so that we create a 'task' instead of a 'file' task.</p>
166
- </div></span>
167
-
168
- </li>
169
-
170
-
171
- <li class="public ">
172
- <span class="summary_signature">
173
-
174
- <a href="#execute-instance_method" title="#execute (instance method)">- (Object) <strong>execute</strong> </a>
175
-
176
-
177
-
178
- </span>
179
-
180
-
181
-
182
-
183
-
184
-
185
-
186
-
187
- <span class="summary_desc"><div class='inline'>
188
- <p>Execute the Daemon executable, followed by the collection of stored actions
189
- in the order they were called.</p>
190
- </div></span>
191
-
192
- </li>
193
-
194
-
195
- <li class="public ">
196
- <span class="summary_signature">
197
-
198
- <a href="#initialize-instance_method" title="#initialize (instance method)">- (InstanceMethods) <strong>initialize</strong> </a>
199
-
200
-
201
-
202
- </span>
203
-
204
-
205
-
206
-
207
-
208
-
209
-
210
-
211
- <span class="summary_desc"><div class='inline'>
212
- <p>A new instance of InstanceMethods.</p>
213
- </div></span>
214
-
215
- </li>
216
-
217
-
218
- <li class="protected ">
219
- <span class="summary_signature">
220
-
221
- <a href="#system_execute-instance_method" title="#system_execute (instance method)">- (Object) <strong>system_execute</strong>(binary, params) </a>
222
-
223
-
224
-
225
- </span>
226
-
227
-
228
- <span class="note title protected">protected</span>
229
-
230
-
231
-
232
-
233
-
234
- <span class="summary_desc"><div class='inline'>
235
- <p>This is the override of the underlying Sprout::Executable template method
236
- so that we create the process in a thread in order to read and write to
237
- it.</p>
238
- </div></span>
239
-
240
- </li>
241
-
242
-
243
- <li class="protected ">
244
- <span class="summary_signature">
245
-
246
- <a href="#update_rake_task_name_from_args-instance_method" title="#update_rake_task_name_from_args (instance method)">- (Object) <strong>update_rake_task_name_from_args</strong>(*args) </a>
247
-
248
-
249
-
250
- </span>
251
-
252
-
253
- <span class="note title protected">protected</span>
254
-
255
-
256
-
257
-
258
-
259
- <span class="summary_desc"><div class='inline'>
260
- <p>This is the override of the underlying Sprout::Executable template method
261
- so that we are NOT added to the CLEAN collection.</p>
262
- </div></span>
263
-
264
- </li>
265
-
266
-
267
- </ul>
268
-
269
-
270
-
271
- <div id="instance_attr_details" class="attr_details">
272
- <h2>Instance Attribute Details</h2>
273
-
274
-
275
- <span id=""></span>
276
- <span id="action_stack-instance_method"></span>
277
- <div class="method_details first">
278
- <p class="signature first" id="action_stack-instance_method">
279
-
280
- - (<tt>Object</tt>) <strong>action_stack</strong> <span class="extras">(readonly)</span>
281
-
282
-
283
-
284
- </p><div class="docstring">
285
- <div class="discussion">
286
-
287
- <p>This is the array of actions that have been provided at the class level to
288
- this instance.</p>
289
-
290
-
291
- </div>
292
- </div>
293
- <div class="tags">
294
-
295
- </div><table class="source_code">
296
- <tr>
297
- <td>
298
- <pre class="lines">
299
-
300
-
301
- 144
302
- 145
303
- 146</pre>
304
- </td>
305
- <td>
306
- <pre class="code"><span class="info file"># File 'lib/sprout/daemon.rb', line 144</span>
307
-
308
- <span class='kw'>def</span> <span class='id action_stack'>action_stack</span>
309
- <span class='ivar'>@action_stack</span>
310
- <span class='kw'>end</span></pre>
311
- </td>
312
- </tr>
313
- </table>
314
- </div>
315
-
316
-
317
- <span id="prompt=-instance_method"></span>
318
- <span id="prompt-instance_method"></span>
319
- <div class="method_details ">
320
- <p class="signature " id="prompt-instance_method">
321
-
322
- - (<tt>Object</tt>) <strong>prompt</strong>
323
-
324
-
325
-
326
- </p><div class="docstring">
327
- <div class="discussion">
328
-
329
- <p>The prompt expression for this daemon process.</p>
330
-
331
- <p>When executing a series of commands, the wrapper will wait until it matches
332
- this expression on stdout before continuing the series.</p>
333
-
334
- <p>For FDB, this value is set like:</p>
335
-
336
- <pre class="code"><span class='id set'>set</span> <span class='symbol'>:prompt</span><span class='comma'>,</span> <span class='tstring'><span class='regexp_beg'>/</span><span class='tstring_content'>^\(fdb\) </span><span class='regexp_end'>/</span></span></pre>
337
-
338
- <p>Most processes can trigger a variety of different prompts, these can be
339
- expressed here using the | (or) operator.</p>
340
-
341
- <p>FDB actually uses the following:</p>
342
-
343
- <pre class="code"><span class='id set'>set</span> <span class='symbol'>:prompt</span><span class='comma'>,</span> <span class='tstring'><span class='regexp_beg'>/</span><span class='tstring_content'>^\(fdb\) |\(y or n\) </span><span class='regexp_end'>/</span></span></pre>
344
-
345
-
346
- </div>
347
- </div>
348
- <div class="tags">
349
-
350
- </div><table class="source_code">
351
- <tr>
352
- <td>
353
- <pre class="lines">
354
-
355
-
356
- 139
357
- 140
358
- 141</pre>
359
- </td>
360
- <td>
361
- <pre class="code"><span class="info file"># File 'lib/sprout/daemon.rb', line 139</span>
362
-
363
- <span class='kw'>def</span> <span class='id prompt'>prompt</span>
364
- <span class='ivar'>@prompt</span>
365
- <span class='kw'>end</span></pre>
366
- </td>
367
- </tr>
368
- </table>
369
- </div>
370
-
371
- </div>
372
-
373
-
374
- <div id="instance_method_details" class="method_details_list">
375
- <h2>Instance Method Details</h2>
376
-
377
-
378
- <div class="method_details first">
379
- <p class="signature first" id="create_outer_task-instance_method">
380
-
381
- - (<tt>Object</tt>) <strong>create_outer_task</strong>(*args) <span class="extras">(protected)</span>
382
-
383
-
384
-
385
- </p><div class="docstring">
386
- <div class="discussion">
387
-
388
- <p>This is the override of the underlying Sprout::Executable template method
389
- so that we create a 'task' instead of a 'file' task.</p>
390
-
391
-
392
- </div>
393
- </div>
394
- <div class="tags">
395
-
396
- </div><table class="source_code">
397
- <tr>
398
- <td>
399
- <pre class="lines">
400
-
401
-
402
- 173
403
- 174
404
- 175
405
- 176
406
- 177</pre>
407
- </td>
408
- <td>
409
- <pre class="code"><span class="info file"># File 'lib/sprout/daemon.rb', line 173</span>
410
-
411
- <span class='kw'>def</span> <span class='id create_outer_task'>create_outer_task</span> <span class='op'>*</span><span class='id args'>args</span>
412
- <span class='id task'>task</span> <span class='op'>*</span><span class='id args'>args</span> <span class='kw'>do</span>
413
- <span class='id execute'>execute</span>
414
- <span class='kw'>end</span>
415
- <span class='kw'>end</span></pre>
416
- </td>
417
- </tr>
418
- </table>
419
- </div>
420
-
421
- <div class="method_details ">
422
- <p class="signature " id="execute-instance_method">
423
-
424
- - (<tt>Object</tt>) <strong>execute</strong>
425
-
426
-
427
-
428
- </p><div class="docstring">
429
- <div class="discussion">
430
-
431
- <p>Execute the Daemon executable, followed by the collection of stored actions
432
- in the order they were called.</p>
433
-
434
- <p>If none of the stored actions result in terminating the process, the
435
- underlying daemon will be connected to the terminal for user (manual)
436
- input.</p>
437
-
438
-
439
- </div>
440
- </div>
441
- <div class="tags">
442
-
443
- </div><table class="source_code">
444
- <tr>
445
- <td>
446
- <pre class="lines">
447
-
448
-
449
- 160
450
- 161
451
- 162
452
- 163
453
- 164
454
- 165</pre>
455
- </td>
456
- <td>
457
- <pre class="code"><span class="info file"># File 'lib/sprout/daemon.rb', line 160</span>
458
-
459
- <span class='kw'>def</span> <span class='id execute'>execute</span>
460
- <span class='id runner'>runner</span> <span class='op'>=</span> <span class='kw'>super</span>
461
- <span class='id execute_actions'>execute_actions</span> <span class='id runner'>runner</span>
462
- <span class='id handle_user_session'>handle_user_session</span> <span class='id runner'>runner</span>
463
- <span class='const'>Process</span><span class='period'>.</span><span class='id wait'>wait</span> <span class='id runner'>runner</span><span class='period'>.</span><span class='id pid'>pid</span>
464
- <span class='kw'>end</span></pre>
465
- </td>
466
- </tr>
467
- </table>
468
- </div>
469
-
470
- <div class="method_details ">
471
- <p class="signature " id="initialize-instance_method">
472
-
473
- - (<tt><span class='object_link'><a href="" title="Sprout::Daemon::InstanceMethods (module)">InstanceMethods</a></span></tt>) <strong>initialize</strong>
474
-
475
-
476
-
477
- </p><div class="docstring">
478
- <div class="discussion">
479
-
480
- <p>A new instance of InstanceMethods</p>
481
-
482
-
483
- </div>
484
- </div>
485
- <div class="tags">
486
-
487
- </div><table class="source_code">
488
- <tr>
489
- <td>
490
- <pre class="lines">
491
-
492
-
493
- 146
494
- 147
495
- 148
496
- 149</pre>
497
- </td>
498
- <td>
499
- <pre class="code"><span class="info file"># File 'lib/sprout/daemon.rb', line 146</span>
500
-
501
- <span class='kw'>def</span> <span class='id initialize'>initialize</span>
502
- <span class='kw'>super</span>
503
- <span class='ivar'>@action_stack</span> <span class='op'>=</span> <span class='lbracket'>[</span><span class='rbracket'>]</span>
504
- <span class='kw'>end</span></pre>
505
- </td>
506
- </tr>
507
- </table>
508
- </div>
509
-
510
- <div class="method_details ">
511
- <p class="signature " id="system_execute-instance_method">
512
-
513
- - (<tt>Object</tt>) <strong>system_execute</strong>(binary, params) <span class="extras">(protected)</span>
514
-
515
-
516
-
517
- </p><div class="docstring">
518
- <div class="discussion">
519
-
520
- <p>This is the override of the underlying Sprout::Executable template method
521
- so that we create the process in a thread in order to read and write to
522
- it.</p>
523
-
524
-
525
- </div>
526
- </div>
527
- <div class="tags">
528
-
529
- </div><table class="source_code">
530
- <tr>
531
- <td>
532
- <pre class="lines">
533
-
534
-
535
- 193
536
- 194
537
- 195</pre>
538
- </td>
539
- <td>
540
- <pre class="code"><span class="info file"># File 'lib/sprout/daemon.rb', line 193</span>
541
-
542
- <span class='kw'>def</span> <span class='id system_execute'>system_execute</span> <span class='id binary'>binary</span><span class='comma'>,</span> <span class='id params'>params</span>
543
- <span class='const'>Sprout</span><span class='period'>.</span><span class='id current_system'>current_system</span><span class='period'>.</span><span class='id execute_thread'>execute_thread</span> <span class='id binary'>binary</span><span class='comma'>,</span> <span class='id params'>params</span>
544
- <span class='kw'>end</span></pre>
545
- </td>
546
- </tr>
547
- </table>
548
- </div>
549
-
550
- <div class="method_details ">
551
- <p class="signature " id="update_rake_task_name_from_args-instance_method">
552
-
553
- - (<tt>Object</tt>) <strong>update_rake_task_name_from_args</strong>(*args) <span class="extras">(protected)</span>
554
-
555
-
556
-
557
- </p><div class="docstring">
558
- <div class="discussion">
559
-
560
- <p>This is the override of the underlying Sprout::Executable template method
561
- so that we are NOT added to the CLEAN collection. (Work performed in the
562
- Executable)</p>
563
-
564
-
565
- </div>
566
- </div>
567
- <div class="tags">
568
-
569
- </div><table class="source_code">
570
- <tr>
571
- <td>
572
- <pre class="lines">
573
-
574
-
575
- 184
576
- 185
577
- 186</pre>
578
- </td>
579
- <td>
580
- <pre class="code"><span class="info file"># File 'lib/sprout/daemon.rb', line 184</span>
581
-
582
- <span class='kw'>def</span> <span class='id update_rake_task_name_from_args'>update_rake_task_name_from_args</span> <span class='op'>*</span><span class='id args'>args</span>
583
- <span class='kw'>self</span><span class='period'>.</span><span class='id rake_task_name'>rake_task_name</span> <span class='op'>=</span> <span class='id parse_rake_task_arg'>parse_rake_task_arg</span> <span class='id args'>args</span><span class='period'>.</span><span class='id last'>last</span>
584
- <span class='kw'>end</span></pre>
585
- </td>
586
- </tr>
587
- </table>
588
- </div>
589
-
590
- </div>
591
-
592
- </div>
593
-
594
- <div id="footer">
595
- Generated on Wed Dec 22 11:58:33 2010 by
596
- <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
597
- 0.6.3 (ruby-1.9.2).
598
- </div>
599
-
600
- </body>
601
- </html>