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,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class PathsParamTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "a new PathsParam" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class PlatformTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "platform" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class ProcessRunnerTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "process runner" do
7
7
 
@@ -2,7 +2,7 @@ require 'test_helper'
2
2
  require 'fixtures/examples/echo_inputs'
3
3
 
4
4
  class ExecutableOptionParserTest < Test::Unit::TestCase
5
- include SproutTestCase
5
+ include Sprout::TestHelper
6
6
 
7
7
  context "a new RDoc parser" do
8
8
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class RemoteFileLoaderTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "The remote file loader" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class RemoteFileTargetTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "an improperly configured remote file target" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class RubyFeatureTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "a new ruby feature" do
7
7
 
@@ -3,7 +3,7 @@ require 'test_helper'
3
3
  require 'sprout/generators/ruby/ruby_generator'
4
4
 
5
5
  class RubyGeneratorTest < Test::Unit::TestCase
6
- include SproutTestCase
6
+ include Sprout::TestHelper
7
7
 
8
8
  context "A generated ruby application" do
9
9
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class SpecificationTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "a newly defined specification" do
7
7
  setup do
@@ -113,6 +113,12 @@ class SpecificationTest < Test::Unit::TestCase
113
113
  end
114
114
  end
115
115
 
116
+ =begin
117
+ ##
118
+ # This test method is EXTREMELY slow!
119
+ # It attempts to download and unpack the
120
+ # Flex SDK - but only the first time
121
+ # it's run on a particular system...
116
122
  context "a universal collection of executables" do
117
123
 
118
124
  setup do
@@ -144,6 +150,7 @@ class SpecificationTest < Test::Unit::TestCase
144
150
  assert_not_nil mxmlc
145
151
  end
146
152
  end
153
+ =end
147
154
 
148
155
  context "a newly included executable" do
149
156
  setup do
@@ -1,9 +1,9 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class SproutTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
- context "The SproutTestCase" do
6
+ context "The Sprout::TestHelper" do
7
7
 
8
8
  context "find_fixtures" do
9
9
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class StringParamTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "a new StringParam" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class StringTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "a new string" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class StringsParamTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "a new StringsParam" do
7
7
 
@@ -1 +1,33 @@
1
- require File.join(File.dirname(__FILE__), 'sprout_test_helper')
1
+ require "rubygems"
2
+ require "bundler"
3
+
4
+ Bundler.setup :default, :development
5
+
6
+ # These require statments *must* be in this order:
7
+ # http://bit.ly/bCC0Ew
8
+ # Somewhat surprised they're not being required by Bundler...
9
+ require 'shoulda'
10
+ require 'mocha'
11
+
12
+ lib = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
13
+ $:.unshift lib unless $:.include? lib
14
+
15
+ require 'sprout'
16
+
17
+ $:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..'))
18
+
19
+ require 'unit/fake_process_runner'
20
+ require 'unit/fake_executable_task'
21
+ require 'sprout/test_helper'
22
+
23
+ class Test::Unit::TestCase
24
+
25
+ # Only clear registrations in the Sprout core
26
+ # project - not in child projects
27
+ def teardown
28
+ Sprout::Executable.clear_entities!
29
+ Sprout::Library.clear_entities!
30
+ Sprout::Generator.clear_entities!
31
+ end
32
+ end
33
+
@@ -3,7 +3,7 @@ require 'test_helper'
3
3
  require 'sprout/generators/tool/tool_generator'
4
4
 
5
5
  class ToolGeneratorTest < Test::Unit::TestCase
6
- include SproutTestCase
6
+ include Sprout::TestHelper
7
7
 
8
8
  context "A generated tool" do
9
9
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class UnixSystemTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "new unix system" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class UserTest < Test::Unit::TestCase
4
- #include SproutTestCase
4
+ #include Sprout::TestHelper
5
5
 
6
6
  ['vista', 'mswin', 'wince', 'emx'].each do |variant|
7
7
  context variant do
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class VistaSystemTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "new windows vista system" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class WinNixSystemTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "new windows nix (cygwin/mingw) system" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class WinSystemTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "new windows system" do
7
7
 
data/test-stderr.log ADDED
@@ -0,0 +1 @@
1
+ # Logfile created on 2010-12-28 11:25:34 -0800 by logger.rb/25413
data/test-stdout.log ADDED
@@ -0,0 +1,237 @@
1
+ # Logfile created on 2010-12-28 11:25:34 -0800 by logger.rb/25413
2
+ I, [2010-12-28T11:26:11.887992 #27344] INFO -- : test/fixtures/executable/flex3sdk_gem/mxmlc -debug -source-path+=test/fixtures/executable/src test/fixtures/executable/src/Main.as
3
+ I, [2010-12-28T11:26:11.901133 #27344] INFO -- : success
4
+
5
+ I, [2010-12-28T11:26:12.162073 #27344] INFO -- : >> Created directory at: test/fixtures/library/project_lib
6
+ I, [2010-12-28T11:26:12.162588 #27344] INFO -- : >> Copied files from: (test/fixtures/library/sources/src) to: (test/fixtures/library/project_lib/fake_source_lib)
7
+ I, [2010-12-28T11:26:12.162914 #27344] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/a) to: (test/fixtures/library/project_lib/fake_source_lib)
8
+ I, [2010-12-28T11:26:12.163244 #27344] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/b) to: (test/fixtures/library/project_lib/fake_source_lib)
9
+ I, [2010-12-28T11:26:12.205181 #27344] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
10
+
11
+ If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
12
+ I, [2010-12-28T11:26:12.222928 #27344] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
13
+
14
+ If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
15
+ I, [2010-12-28T11:26:12.350291 #27344] INFO -- : test/fixtures/remote_file_target/bin/echochamber
16
+ I, [2010-12-28T11:26:23.479182 #27361] INFO -- : Adobe fdb (Flash Player Debugger) [build 16076]
17
+
18
+ I, [2010-12-28T11:26:23.480087 #27361] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
19
+
20
+ I, [2010-12-28T11:26:23.480214 #27361] INFO -- : run
21
+ I, [2010-12-28T11:26:23.481279 #27361] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
22
+
23
+ I, [2010-12-28T11:26:23.481382 #27361] INFO -- : break AsUnitRunner:12
24
+ I, [2010-12-28T11:26:23.481916 #27361] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
25
+
26
+ I, [2010-12-28T11:26:23.482323 #27361] INFO -- : 12 core = new TextCore();
27
+
28
+ I, [2010-12-28T11:26:23.482421 #27361] INFO -- : continue
29
+ I, [2010-12-28T11:26:23.482638 #27361] INFO -- : (fdb) Continuing now
30
+
31
+ I, [2010-12-28T11:26:23.482734 #27361] INFO -- : kill
32
+ I, [2010-12-28T11:26:23.483188 #27361] INFO -- : y
33
+ I, [2010-12-28T11:26:23.483466 #27361] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
34
+
35
+ I, [2010-12-28T11:26:23.483565 #27361] INFO -- : quit
36
+ I, [2010-12-28T11:26:24.492339 #27361] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
37
+
38
+ I, [2010-12-28T11:26:24.493331 #27361] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
39
+
40
+ I, [2010-12-28T11:26:24.493455 #27361] INFO -- : run
41
+ I, [2010-12-28T11:26:24.494520 #27361] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
42
+
43
+ I, [2010-12-28T11:26:24.494629 #27361] INFO -- : break AsUnitRunner:12
44
+ I, [2010-12-28T11:26:24.495160 #27361] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
45
+
46
+ I, [2010-12-28T11:26:24.495546 #27361] INFO -- : 12 core = new TextCore();
47
+
48
+ I, [2010-12-28T11:26:24.495644 #27361] INFO -- : continue
49
+ I, [2010-12-28T11:26:24.495862 #27361] INFO -- : (fdb) Continuing now
50
+
51
+ I, [2010-12-28T11:26:24.495965 #27361] INFO -- : kill
52
+ I, [2010-12-28T11:26:24.496428 #27361] INFO -- : y
53
+ I, [2010-12-28T11:26:24.496705 #27361] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
54
+
55
+ I, [2010-12-28T11:26:24.496805 #27361] INFO -- : quit
56
+ I, [2010-12-28T11:26:25.504632 #27361] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
57
+
58
+ I, [2010-12-28T11:26:25.505638 #27361] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
59
+
60
+ I, [2010-12-28T11:26:25.505907 #27361] INFO -- : run
61
+ I, [2010-12-28T11:26:25.507000 #27361] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
62
+
63
+ I, [2010-12-28T11:26:25.507113 #27361] INFO -- : break AsUnitRunner:12
64
+ I, [2010-12-28T11:26:25.507669 #27361] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
65
+
66
+ I, [2010-12-28T11:26:25.508078 #27361] INFO -- : 12 core = new TextCore();
67
+
68
+ I, [2010-12-28T11:26:25.508182 #27361] INFO -- : continue
69
+ I, [2010-12-28T11:26:25.508405 #27361] INFO -- : (fdb) Continuing now
70
+
71
+ I, [2010-12-28T11:26:25.508508 #27361] INFO -- : kill
72
+ I, [2010-12-28T11:26:25.508969 #27361] INFO -- : y
73
+ I, [2010-12-28T11:26:25.509240 #27361] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
74
+
75
+ I, [2010-12-28T11:26:25.509356 #27361] INFO -- : quit
76
+ I, [2010-12-28T11:26:25.781711 #27361] INFO -- : test/fixtures/executable/flex3sdk_gem/mxmlc -debug -source-path+=test/fixtures/executable/src test/fixtures/executable/src/Main.as
77
+ I, [2010-12-28T11:26:25.795163 #27361] INFO -- : success
78
+
79
+ I, [2010-12-28T11:26:26.057566 #27361] INFO -- : >> Created directory at: test/fixtures/library/project_lib
80
+ I, [2010-12-28T11:26:26.058080 #27361] INFO -- : >> Copied files from: (test/fixtures/library/sources/src) to: (test/fixtures/library/project_lib/fake_source_lib)
81
+ I, [2010-12-28T11:26:26.058413 #27361] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/a) to: (test/fixtures/library/project_lib/fake_source_lib)
82
+ I, [2010-12-28T11:26:26.058726 #27361] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/b) to: (test/fixtures/library/project_lib/fake_source_lib)
83
+ I, [2010-12-28T11:26:26.099633 #27361] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
84
+
85
+ If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
86
+ I, [2010-12-28T11:26:26.116184 #27361] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
87
+
88
+ If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
89
+ I, [2010-12-28T11:26:26.243106 #27361] INFO -- : test/fixtures/remote_file_target/bin/echochamber
90
+ I, [2010-12-28T11:27:54.054369 #27410] INFO -- : Adobe fdb (Flash Player Debugger) [build 16076]
91
+
92
+ I, [2010-12-28T11:27:54.055729 #27410] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
93
+
94
+ I, [2010-12-28T11:27:54.055875 #27410] INFO -- : run
95
+ I, [2010-12-28T11:27:54.057088 #27410] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
96
+
97
+ I, [2010-12-28T11:27:54.057212 #27410] INFO -- : break AsUnitRunner:12
98
+ I, [2010-12-28T11:27:54.057896 #27410] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
99
+
100
+ I, [2010-12-28T11:27:54.058349 #27410] INFO -- : 12 core = new TextCore();
101
+
102
+ I, [2010-12-28T11:27:54.058460 #27410] INFO -- : continue
103
+ I, [2010-12-28T11:27:54.058701 #27410] INFO -- : (fdb) Continuing now
104
+
105
+ I, [2010-12-28T11:27:54.058831 #27410] INFO -- : kill
106
+ I, [2010-12-28T11:27:54.059315 #27410] INFO -- : y
107
+ I, [2010-12-28T11:27:54.059612 #27410] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
108
+
109
+ I, [2010-12-28T11:27:54.059718 #27410] INFO -- : quit
110
+ I, [2010-12-28T11:27:55.063437 #27410] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
111
+
112
+ I, [2010-12-28T11:27:55.064774 #27410] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
113
+
114
+ I, [2010-12-28T11:27:55.065061 #27410] INFO -- : run
115
+ I, [2010-12-28T11:27:55.066178 #27410] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
116
+
117
+ I, [2010-12-28T11:27:55.066287 #27410] INFO -- : break AsUnitRunner:12
118
+ I, [2010-12-28T11:27:55.066929 #27410] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
119
+
120
+ I, [2010-12-28T11:27:55.067398 #27410] INFO -- : 12 core = new TextCore();
121
+
122
+ I, [2010-12-28T11:27:55.067522 #27410] INFO -- : continue
123
+ I, [2010-12-28T11:27:55.067758 #27410] INFO -- : (fdb) Continuing now
124
+
125
+ I, [2010-12-28T11:27:55.067876 #27410] INFO -- : kill
126
+ I, [2010-12-28T11:27:55.068340 #27410] INFO -- : y
127
+ I, [2010-12-28T11:27:55.068620 #27410] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
128
+
129
+ I, [2010-12-28T11:27:55.068725 #27410] INFO -- : quit
130
+ I, [2010-12-28T11:27:56.074625 #27410] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
131
+
132
+ I, [2010-12-28T11:27:56.075874 #27410] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
133
+
134
+ I, [2010-12-28T11:27:56.076126 #27410] INFO -- : run
135
+ I, [2010-12-28T11:27:56.077269 #27410] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
136
+
137
+ I, [2010-12-28T11:27:56.077403 #27410] INFO -- : break AsUnitRunner:12
138
+ I, [2010-12-28T11:27:56.077982 #27410] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
139
+
140
+ I, [2010-12-28T11:27:56.078397 #27410] INFO -- : 12 core = new TextCore();
141
+
142
+ I, [2010-12-28T11:27:56.078518 #27410] INFO -- : continue
143
+ I, [2010-12-28T11:27:56.078738 #27410] INFO -- : (fdb) Continuing now
144
+
145
+ I, [2010-12-28T11:27:56.078854 #27410] INFO -- : kill
146
+ I, [2010-12-28T11:27:56.079332 #27410] INFO -- : y
147
+ I, [2010-12-28T11:27:56.079608 #27410] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
148
+
149
+ I, [2010-12-28T11:27:56.079719 #27410] INFO -- : quit
150
+ I, [2010-12-28T11:27:56.351411 #27410] INFO -- : test/fixtures/executable/flex3sdk_gem/mxmlc -debug -source-path+=test/fixtures/executable/src test/fixtures/executable/src/Main.as
151
+ I, [2010-12-28T11:27:56.365007 #27410] INFO -- : success
152
+
153
+ I, [2010-12-28T11:27:56.704053 #27410] INFO -- : >> Created directory at: test/fixtures/library/project_lib
154
+ I, [2010-12-28T11:27:56.704580 #27410] INFO -- : >> Copied files from: (test/fixtures/library/sources/src) to: (test/fixtures/library/project_lib/fake_source_lib)
155
+ I, [2010-12-28T11:27:56.704914 #27410] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/a) to: (test/fixtures/library/project_lib/fake_source_lib)
156
+ I, [2010-12-28T11:27:56.705264 #27410] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/b) to: (test/fixtures/library/project_lib/fake_source_lib)
157
+ I, [2010-12-28T11:27:56.747832 #27410] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
158
+
159
+ If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
160
+ I, [2010-12-28T11:27:56.765313 #27410] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
161
+
162
+ If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
163
+ I, [2010-12-28T11:27:56.893730 #27410] INFO -- : test/fixtures/remote_file_target/bin/echochamber
164
+ I, [2010-12-28T11:29:05.370186 #27453] INFO -- : Adobe fdb (Flash Player Debugger) [build 16076]
165
+
166
+ I, [2010-12-28T11:29:05.371370 #27453] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
167
+
168
+ I, [2010-12-28T11:29:05.371523 #27453] INFO -- : run
169
+ I, [2010-12-28T11:29:05.372699 #27453] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
170
+
171
+ I, [2010-12-28T11:29:05.372830 #27453] INFO -- : break AsUnitRunner:12
172
+ I, [2010-12-28T11:29:05.373372 #27453] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
173
+
174
+ I, [2010-12-28T11:29:05.373761 #27453] INFO -- : 12 core = new TextCore();
175
+
176
+ I, [2010-12-28T11:29:05.373858 #27453] INFO -- : continue
177
+ I, [2010-12-28T11:29:05.374086 #27453] INFO -- : (fdb) Continuing now
178
+
179
+ I, [2010-12-28T11:29:05.374186 #27453] INFO -- : kill
180
+ I, [2010-12-28T11:29:05.374613 #27453] INFO -- : y
181
+ I, [2010-12-28T11:29:05.374873 #27453] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
182
+
183
+ I, [2010-12-28T11:29:05.374975 #27453] INFO -- : quit
184
+ I, [2010-12-28T11:29:06.488623 #27453] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
185
+
186
+ I, [2010-12-28T11:29:06.489720 #27453] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
187
+
188
+ I, [2010-12-28T11:29:06.489848 #27453] INFO -- : run
189
+ I, [2010-12-28T11:29:06.490908 #27453] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
190
+
191
+ I, [2010-12-28T11:29:06.491012 #27453] INFO -- : break AsUnitRunner:12
192
+ I, [2010-12-28T11:29:06.491540 #27453] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
193
+
194
+ I, [2010-12-28T11:29:06.491941 #27453] INFO -- : 12 core = new TextCore();
195
+
196
+ I, [2010-12-28T11:29:06.492042 #27453] INFO -- : continue
197
+ I, [2010-12-28T11:29:06.492237 #27453] INFO -- : (fdb) Continuing now
198
+
199
+ I, [2010-12-28T11:29:06.492351 #27453] INFO -- : kill
200
+ I, [2010-12-28T11:29:06.492799 #27453] INFO -- : y
201
+ I, [2010-12-28T11:29:06.493046 #27453] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
202
+
203
+ I, [2010-12-28T11:29:06.493156 #27453] INFO -- : quit
204
+ I, [2010-12-28T11:29:07.520305 #27453] INFO -- : (fdb) Adobe fdb (Flash Player Debugger) [build 16076]
205
+
206
+ I, [2010-12-28T11:29:07.521304 #27453] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
207
+
208
+ I, [2010-12-28T11:29:07.521458 #27453] INFO -- : run
209
+ I, [2010-12-28T11:29:07.522541 #27453] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
210
+
211
+ I, [2010-12-28T11:29:07.522659 #27453] INFO -- : break AsUnitRunner:12
212
+ I, [2010-12-28T11:29:07.523196 #27453] INFO -- : (fdb) Breakpoint 1, AsUnitRunner() at AsUnitRunner.as:12
213
+
214
+ I, [2010-12-28T11:29:07.523609 #27453] INFO -- : 12 core = new TextCore();
215
+
216
+ I, [2010-12-28T11:29:07.523722 #27453] INFO -- : continue
217
+ I, [2010-12-28T11:29:07.523950 #27453] INFO -- : (fdb) Continuing now
218
+
219
+ I, [2010-12-28T11:29:07.524065 #27453] INFO -- : kill
220
+ I, [2010-12-28T11:29:07.524511 #27453] INFO -- : y
221
+ I, [2010-12-28T11:29:07.524791 #27453] INFO -- : (fdb) Kill the program being debugged? (y or n) Confirmation accepted
222
+
223
+ I, [2010-12-28T11:29:07.525091 #27453] INFO -- : quit
224
+ I, [2010-12-28T11:29:07.796556 #27453] INFO -- : test/fixtures/executable/flex3sdk_gem/mxmlc -debug -source-path+=test/fixtures/executable/src test/fixtures/executable/src/Main.as
225
+ I, [2010-12-28T11:29:07.810040 #27453] INFO -- : success
226
+
227
+ I, [2010-12-28T11:29:08.177364 #27453] INFO -- : >> Created directory at: test/fixtures/library/project_lib
228
+ I, [2010-12-28T11:29:08.177877 #27453] INFO -- : >> Copied files from: (test/fixtures/library/sources/src) to: (test/fixtures/library/project_lib/fake_source_lib)
229
+ I, [2010-12-28T11:29:08.178219 #27453] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/a) to: (test/fixtures/library/project_lib/fake_source_lib)
230
+ I, [2010-12-28T11:29:08.178583 #27453] INFO -- : >> Copied files from: (test/fixtures/library/sources/lib/b) to: (test/fixtures/library/project_lib/fake_source_lib)
231
+ I, [2010-12-28T11:29:08.225726 #27453] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
232
+
233
+ If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
234
+ I, [2010-12-28T11:29:08.241958 #27453] INFO -- : Unpacking archive at test/fixtures/sprout/cache/downloaded.zip now. This can take anywhere from a few seconds to many minutes depending on your OS and the size of the archive.
235
+
236
+ If you're on windows, consider using this ample time to look into improving the zip utils in Ruby...
237
+ I, [2010-12-28T11:29:08.365665 #27453] INFO -- : test/fixtures/remote_file_target/bin/echochamber