flashsdk 1.0.13.pre → 1.0.14.pre

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 (46) hide show
  1. data/Gemfile +1 -1
  2. data/Gemfile.lock +2 -4
  3. data/VERSION +1 -1
  4. data/lib/flashplayer/specification.rb +39 -35
  5. data/lib/flashplayer/system_mixins.rb +2 -5
  6. data/lib/flashplayer/task.legacy.rb +1 -1
  7. data/lib/flashsdk/adl.rb +5 -2
  8. data/lib/flashsdk/adt.rb +1 -2
  9. data/lib/flashsdk/amxmlc.rb +1 -2
  10. data/lib/flashsdk/compc.rb +0 -1
  11. data/lib/flashsdk/compiler_base.rb +111 -61
  12. data/lib/flashsdk/fcsh.rb +65 -0
  13. data/lib/flashsdk/fcsh_client.rb +36 -0
  14. data/lib/flashsdk/fdb.rb +767 -0
  15. data/lib/flashsdk/generators/class_generator.rb +37 -12
  16. data/lib/flashsdk/generators/flash_helper.rb +119 -23
  17. data/lib/flashsdk/module.rb +99 -1
  18. data/lib/flashsdk/mxmlc.rb +34 -8
  19. data/lib/flashsdk.rb +2 -0
  20. data/lib/flex3.rb +10 -9
  21. data/lib/flex4.rb +29 -0
  22. data/test/fixtures/sdk/fdb +62 -0
  23. data/test/fixtures/sdk/mxmlc +54 -0
  24. data/test/unit/adl_test.rb +1 -3
  25. data/test/unit/adt_test.rb +2 -3
  26. data/test/unit/amxmlc_test.rb +4 -2
  27. data/test/unit/class_generator_test.rb +1 -1
  28. data/test/unit/compc_test.rb +1 -2
  29. data/test/unit/fcsh_test.rb +35 -0
  30. data/test/unit/fdb_test.rb +49 -0
  31. data/test/unit/flash_helper_test.rb +21 -5
  32. data/test/unit/flashplayer_log_file_test.rb +2 -2
  33. data/test/unit/flashplayer_mm_config_test.rb +1 -1
  34. data/test/unit/flashplayer_module_test.rb +1 -1
  35. data/test/unit/flashplayer_task_test.rb +2 -2
  36. data/test/unit/flashplayer_trust_test.rb +1 -1
  37. data/test/unit/flex_generator_test.rb +1 -1
  38. data/test/unit/mxmlc_test.rb +27 -5
  39. data/test/unit/project_generator_test.rb +1 -1
  40. data/test/unit/test_helper.rb +3 -1
  41. data/test-stderr.log +1 -0
  42. data/test-stdout.log +58 -0
  43. metadata +15 -9
  44. data/lib/flashsdk/compc_legacy.rb +0 -149
  45. data/lib/flashsdk/mxmlc_legacy.rb +0 -135
  46. data/mate +0 -0
@@ -1,15 +1,13 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class ADLTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "An ADL tool" do
7
7
 
8
8
  setup do
9
9
  @fixture = File.join 'test', 'fixtures', 'air', 'simple'
10
10
  @app_desc = File.join @fixture, 'SomeProject.xml'
11
-
12
- #Sprout::Log.debug = false
13
11
  end
14
12
 
15
13
  teardown do
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class ADTTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "An ADT tool" do
7
7
 
@@ -14,11 +14,10 @@ class ADTTest < Test::Unit::TestCase
14
14
 
15
15
  @certificate = File.join @fixture, 'SomeProject.pfx'
16
16
  @cert_password = 'samplePassword'
17
-
18
- #Sprout::Log.debug = false
19
17
  end
20
18
 
21
19
  teardown do
20
+ clear_tasks
22
21
  remove_file @expected_output
23
22
  end
24
23
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class AMXMLCTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "An AMXMLC tool" do
7
7
 
@@ -9,7 +9,6 @@ class AMXMLCTest < Test::Unit::TestCase
9
9
  @fixture = File.join 'test', 'fixtures', 'air', 'simple'
10
10
  @input = File.join @fixture, 'SomeProject.as'
11
11
  @expected_output = File.join @fixture, 'bin', 'SomeProject.swf'
12
- #Sprout::Log.debug = false
13
12
  end
14
13
 
15
14
  teardown do
@@ -26,6 +25,9 @@ class AMXMLCTest < Test::Unit::TestCase
26
25
  end
27
26
 
28
27
  should "compile a swf" do
28
+ insert_fake_executable File.join(fixtures, 'sdk', 'mxmlc')
29
+ FileUtils.mkdir_p File.dirname(@expected_output)
30
+
29
31
  amxmlc = FlashSDK::AMXMLC.new
30
32
  amxmlc.input = @input
31
33
  amxmlc.output = @expected_output
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class ClassGeneratorTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "a new class generator" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class COMPCTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "An COMPC tool" do
7
7
 
@@ -9,7 +9,6 @@ class COMPCTest < Test::Unit::TestCase
9
9
  @fixture = File.join 'test', 'fixtures', 'compc', 'simple'
10
10
  @input = File.join @fixture, 'SomeFile.as'
11
11
  @expected_output = File.join @fixture, 'SomeFile.swc'
12
- #Sprout::Log.debug = false
13
12
  end
14
13
 
15
14
  teardown do
@@ -0,0 +1,35 @@
1
+ require 'test_helper'
2
+
3
+ class FCSHTest < Test::Unit::TestCase
4
+ include Sprout::TestHelper
5
+
6
+ context "associate FCSH with an MXMLC task" do
7
+
8
+ setup do
9
+ @fixture = File.join fixtures, 'mxmlc', 'simple'
10
+ @input = File.join @fixture, 'SomeFile.as'
11
+ @expected_output = File.join @fixture, 'SomeFile.swf'
12
+ end
13
+
14
+ teardown do
15
+ remove_file @expected_output
16
+ end
17
+
18
+ should "spin up FCSH" do
19
+ mxmlc = FlashSDK::MXMLC.new
20
+ mxmlc.input = @input
21
+
22
+ fcsh = FlashSDK::FCSH.new
23
+ fcsh.execute false
24
+ fcsh.mxmlc mxmlc.to_shell
25
+ FileUtils.touch @input
26
+ fcsh.compile 1
27
+ fcsh.quit
28
+ fcsh.wait
29
+
30
+ assert_file @expected_output
31
+ end
32
+
33
+ end
34
+ end
35
+
@@ -0,0 +1,49 @@
1
+ require 'test_helper'
2
+
3
+ class FDBTest < Test::Unit::TestCase
4
+ include Sprout::TestHelper
5
+
6
+ context "a new fdb task" do
7
+
8
+ setup do
9
+ insert_fake_executable File.join(fixtures, 'sdk', 'fdb')
10
+ end
11
+
12
+ should "execute without shell params" do
13
+ @fdb = FlashSDK::FDB.new
14
+ @fdb.run
15
+ @fdb.break "AsUnitRunner:12"
16
+ @fdb.continue
17
+ @fdb.kill
18
+ @fdb.confirm
19
+ @fdb.quit
20
+ @fdb.execute
21
+ end
22
+
23
+ should "execute from rake task" do
24
+ f = fdb :fdb_debug do |t|
25
+ t.run
26
+ t.break "AsUnitRunner:12"
27
+ t.continue
28
+ t.kill
29
+ t.confirm
30
+ t.quit
31
+ end
32
+
33
+ f.execute
34
+
35
+ # NOTE: If this call raises, then the
36
+ # Executable.update_rake_task_name method
37
+ # must have changed, and the Daemon override
38
+ # is no longer preventing non-File tasks
39
+ # from being added to the CLEAN collection.
40
+ #
41
+ # Adding this as a message to the error would
42
+ # not display for some reason...
43
+ assert_equal 0, CLEAN.size, "There shouldn't be any tasks waiting to be cleaned up - found: (#{CLEAN.inspect})"
44
+ end
45
+
46
+ end
47
+
48
+ end
49
+
@@ -1,27 +1,43 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class FlashHelperTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "A FlashHelper" do
7
7
 
8
8
  [
9
- { :input => 'com.foo.Bar', :expected => 'com.foo.Bar' }
10
- #{ :input => 'com/foo/Bar.as', :expected => 'com.foo.Bar' },
11
- #{ :input => 'com.out.HTML', :expected => 'com.out.HTML' },
9
+ { :input => 'com.foo.Bar', :expected => 'com.foo.Bar' },
10
+ { :input => 'com/foo/Bar.as', :expected => 'com.foo.Bar' },
11
+ { :input => 'com.out.HTML', :expected => 'com.out.HTML' }
12
12
  #{ :input => 'bar', :expected => 'Bar' }
13
13
  ].each do |input|
14
14
 
15
15
  should "return fully qualified classname for #{input[:input]}" do
16
16
  instance = FakeGenerator.new
17
17
  instance.input = input[:input]
18
- assert_equal input[:expected], instance.fully_qualified_class_name
18
+ assert_equal input[:expected], instance.fake_fully_qualified_class_name
19
19
  end
20
+ end
21
+
22
+ should "work if :src is not defined" do
23
+ instance = FakeGenerator.new
24
+ instance.input = 'com/foo/bar.as'
25
+ assert_equal ["com","foo","bar"], instance.fake_input_in_parts
26
+ assert_equal ["com","foo","mommy"], instance.fake_input_in_parts("com.foo.mommy.mxml")
20
27
  end
28
+
21
29
  end
22
30
  end
23
31
 
24
32
  class FakeGenerator < Sprout::Generator::Base
25
33
  include FlashSDK::FlashHelper
34
+
35
+ def fake_fully_qualified_class_name
36
+ fully_qualified_class_name
37
+ end
38
+
39
+ def fake_input_in_parts value=nil
40
+ input_in_parts value
41
+ end
26
42
  end
27
43
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class LogFileTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "A LogFile" do
7
7
 
@@ -32,7 +32,7 @@ class LogFileTest < Test::Unit::TestCase
32
32
 
33
33
 
34
34
  # This method only works when run alone -
35
- # Under normal circumstances, the SproutTestCase
35
+ # Under normal circumstances, the Sprout::TestHelper
36
36
  # clears out any Rake tasks that have been defined
37
37
  # and we don't have an easy way to redefine the
38
38
  # task...
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class MMConfigTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "An MMConfig" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class FlashPlayerTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "The FlashPlayer module" do
7
7
 
@@ -1,13 +1,13 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class TaskTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "A FlashPlayerTask" do
7
7
 
8
8
  setup do
9
9
  # Force reload of the Specification on each
10
- # test method b/c SproutTestCase calls
10
+ # test method b/c Sprout::TestHelper calls
11
11
  # Executable.clear_entities! but 'require'
12
12
  # only runs once per VM run...
13
13
  load 'flashplayer/specification.rb'
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class TrustTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "A Trust instance" do
7
7
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class FlexGeneratorTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "A new Flex generator" do
7
7
 
@@ -1,19 +1,20 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class MXMLCTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "An MXMLC tool" do
7
7
 
8
8
  setup do
9
- @fixture = File.join fixtures, 'mxmlc', 'simple'
10
- @input = File.join @fixture, 'SomeFile.as'
11
- @expected_output = File.join @fixture, 'SomeFile.swf'
12
- #Sprout::Log.debug = false
9
+ @original_use_fcsh_value = ENV['USE_FCSH']
10
+ @fixture = File.join fixtures, 'mxmlc', 'simple'
11
+ @input = File.join @fixture, 'SomeFile.as'
12
+ @expected_output = File.join @fixture, 'SomeFile.swf'
13
13
  end
14
14
 
15
15
  teardown do
16
16
  remove_file @expected_output
17
+ ENV['USE_FCSH'] = @original_use_fcsh_value
17
18
  end
18
19
 
19
20
  should "accept input" do
@@ -26,6 +27,7 @@ class MXMLCTest < Test::Unit::TestCase
26
27
  end
27
28
 
28
29
  should "compile a swf" do
30
+ insert_fake_executable File.join(fixtures, 'sdk', 'mxmlc')
29
31
  mxmlc = FlashSDK::MXMLC.new
30
32
  mxmlc.input = @input
31
33
  mxmlc.execute
@@ -45,6 +47,26 @@ class MXMLCTest < Test::Unit::TestCase
45
47
  end
46
48
  assert_equal 'bin/SomeProject.swf', t.output
47
49
  end
50
+
51
+ should "use fcsh if specified" do
52
+ Sprout::Executable.expects(:load).with(:mxmlc).never
53
+
54
+ mxmlc = FlashSDK::MXMLC.new
55
+ mxmlc.input = @input
56
+ mxmlc.use_fcsh = true
57
+ mxmlc.execute
58
+ end
59
+
60
+ end
61
+
62
+ private
63
+
64
+ def configure_mxmlc_fake exe_name
65
+ # Comment the following and install the flashsdk
66
+ # to run test against actual mxmlc:
67
+ @fake = File.join(fixtures, 'mxmlc', exe_name)
68
+ path_response = OpenStruct.new(:path => @fake)
69
+ Sprout::Executable.expects(:load).with(:fdb, 'flex4', '>= 4.1.0.pre').returns path_response
48
70
  end
49
71
  end
50
72
 
@@ -1,7 +1,7 @@
1
1
  require 'test_helper'
2
2
 
3
3
  class ProjectGeneratorTest < Test::Unit::TestCase
4
- include SproutTestCase
4
+ include Sprout::TestHelper
5
5
 
6
6
  context "A new project generator" do
7
7
 
@@ -12,5 +12,7 @@ require 'mocha'
12
12
 
13
13
  $:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'lib'))
14
14
  $:.unshift File.expand_path(File.join(File.dirname(__FILE__), '..'))
15
+
15
16
  require 'flashsdk'
16
- require 'sprout/test/sprout_test_case'
17
+ require 'sprout/test_helper'
18
+
data/test-stderr.log ADDED
@@ -0,0 +1 @@
1
+ # Logfile created on 2010-12-28 11:30:47 -0800 by logger.rb/25413
data/test-stdout.log ADDED
@@ -0,0 +1,58 @@
1
+ # Logfile created on 2010-12-28 11:30:47 -0800 by logger.rb/25413
2
+ I, [2010-12-28T11:30:47.951179 #27514] INFO -- : test/fixtures/sdk/mxmlc -output=test/fixtures/air/simple/bin/SomeProject.swf -static-link-runtime-shared-libraries test/fixtures/air/simple/SomeProject.as
3
+ I, [2010-12-28T11:30:48.943281 #27514] INFO -- : /Users/lbayes/Projects/Sprouts/flashsdk/test/fixtures/air/simple/bin/SomeProject.swf (349868)
4
+
5
+ I, [2010-12-28T11:30:49.017059 #27514] INFO -- : /Users/lbayes/Library/Sprouts/1.1/cache/flex4/4.1.0.16076/bin/compc --output=test/fixtures/compc/simple/SomeFile.swc --static-link-runtime-shared-libraries --include-sources+=test/fixtures/compc/simple
6
+ I, [2010-12-28T11:30:53.600260 #27514] INFO -- : Loading configuration file /Users/lbayes/Library/Sprouts/1.1/cache/flex4/4.1.0.16076/frameworks/flex-config.xml
7
+ /Users/lbayes/Projects/Sprouts/flashsdk/test/fixtures/compc/simple/SomeFile.swc (1943 bytes)
8
+
9
+ I, [2010-12-28T11:30:54.160306 #27514] INFO -- : Adobe Flex Compiler SHell (fcsh)
10
+
11
+ I, [2010-12-28T11:30:54.161083 #27514] INFO -- : Version 4.1.0 build 16076
12
+
13
+ I, [2010-12-28T11:30:54.161738 #27514] INFO -- : Copyright (c) 2004-2007 Adobe Systems, Inc. All rights reserved.
14
+
15
+ I, [2010-12-28T11:30:54.161820 #27514] INFO -- :
16
+
17
+ I, [2010-12-28T11:30:54.162752 #27514] INFO -- : mxmlc -static-link-runtime-shared-libraries test/fixtures/mxmlc/simple/SomeFile.as
18
+ I, [2010-12-28T11:30:54.175180 #27514] INFO -- : (fcsh) fcsh: Assigned 1 as the compile target id
19
+
20
+ I, [2010-12-28T11:30:54.252985 #27514] INFO -- : Loading configuration file /Users/lbayes/Library/Sprouts/1.1/cache/flex4/4.1.0.16076/frameworks/flex-config.xml
21
+
22
+ I, [2010-12-28T11:30:56.109517 #27514] INFO -- : /Users/lbayes/Projects/Sprouts/flashsdk/test/fixtures/mxmlc/simple/SomeFile.swf (555 bytes)
23
+
24
+ I, [2010-12-28T11:30:56.109995 #27514] INFO -- : compile 1
25
+ I, [2010-12-28T11:30:56.118715 #27514] INFO -- : (fcsh) Loading configuration file /Users/lbayes/Library/Sprouts/1.1/cache/flex4/4.1.0.16076/frameworks/flex-config.xml
26
+
27
+ I, [2010-12-28T11:30:56.163790 #27514] INFO -- : Recompile: /Users/lbayes/Projects/Sprouts/flashsdk/test/fixtures/mxmlc/simple/SomeFile.as
28
+
29
+ I, [2010-12-28T11:30:56.164540 #27514] INFO -- : Reason: The source file or one of the included files has been updated.
30
+
31
+ I, [2010-12-28T11:30:56.178214 #27514] INFO -- : Files changed: 1 Files affected: 0
32
+
33
+ I, [2010-12-28T11:30:56.222191 #27514] INFO -- : /Users/lbayes/Projects/Sprouts/flashsdk/test/fixtures/mxmlc/simple/SomeFile.swf (554 bytes)
34
+
35
+ I, [2010-12-28T11:30:56.222379 #27514] INFO -- : quit
36
+ I, [2010-12-28T11:30:57.249856 #27514] INFO -- : (fcsh) Adobe fdb (Flash Player Debugger) [build 16076]
37
+
38
+ I, [2010-12-28T11:30:57.250823 #27514] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
39
+
40
+ I, [2010-12-28T11:30:57.251158 #27514] INFO -- : run
41
+ I, [2010-12-28T11:30:57.252208 #27514] 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:30:57.252312 #27514] INFO -- : break AsUnitRunner:12
44
+ I, [2010-12-28T11:30:57.261920 #27514] INFO -- : (fdb)
45
+
46
+ I, [2010-12-28T11:30:58.233569 #27514] INFO -- : Adobe fdb (Flash Player Debugger) [build 16076]
47
+
48
+ I, [2010-12-28T11:30:58.234467 #27514] INFO -- : Copyright (c) 2004-2007 Adobe, Inc. All rights reserved.
49
+
50
+ I, [2010-12-28T11:30:58.234810 #27514] INFO -- : run
51
+ I, [2010-12-28T11:30:58.235909 #27514] INFO -- : (fdb) [SWF] Users:lbayes:Projects:AsUnit-P2:asunit-4.0:bin:AsUnitRunner.swf - 226,833 bytes after decompression
52
+
53
+ I, [2010-12-28T11:30:58.236041 #27514] INFO -- : break AsUnitRunner:12
54
+ I, [2010-12-28T11:30:58.244454 #27514] INFO -- : (fdb)
55
+
56
+ I, [2010-12-28T11:30:58.365701 #27514] INFO -- : test/fixtures/sdk/mxmlc -static-link-runtime-shared-libraries test/fixtures/mxmlc/simple/SomeFile.as
57
+ I, [2010-12-28T11:30:59.347250 #27514] INFO -- : /Users/lbayes/Projects/Sprouts/flashsdk/test/fixtures/mxmlc/simple/SomeFile.swf (349868)
58
+
metadata CHANGED
@@ -5,9 +5,9 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 0
8
- - 13
8
+ - 14
9
9
  - pre
10
- version: 1.0.13.pre
10
+ version: 1.0.14.pre
11
11
  platform: ruby
12
12
  authors:
13
13
  - Luke Bayes
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-10-12 00:00:00 -07:00
18
+ date: 2010-12-28 00:00:00 -08:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -27,10 +27,10 @@ dependencies:
27
27
  - !ruby/object:Gem::Version
28
28
  segments:
29
29
  - 1
30
- - 0
31
- - 31
30
+ - 1
31
+ - 2
32
32
  - pre
33
- version: 1.0.31.pre
33
+ version: 1.1.2.pre
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: *id001
@@ -96,8 +96,10 @@ files:
96
96
  - lib/flashsdk/adt.rb
97
97
  - lib/flashsdk/amxmlc.rb
98
98
  - lib/flashsdk/compc.rb
99
- - lib/flashsdk/compc_legacy.rb
100
99
  - lib/flashsdk/compiler_base.rb
100
+ - lib/flashsdk/fcsh.rb
101
+ - lib/flashsdk/fcsh_client.rb
102
+ - lib/flashsdk/fdb.rb
101
103
  - lib/flashsdk/generators/class_generator.rb
102
104
  - lib/flashsdk/generators/flash_helper.rb
103
105
  - lib/flashsdk/generators/flex_project_generator.rb
@@ -115,11 +117,9 @@ files:
115
117
  - lib/flashsdk/generators/templates/rakefile.rb
116
118
  - lib/flashsdk/module.rb
117
119
  - lib/flashsdk/mxmlc.rb
118
- - lib/flashsdk/mxmlc_legacy.rb
119
120
  - lib/flashsdk.rb
120
121
  - lib/flex3.rb
121
122
  - lib/flex4.rb
122
- - mate
123
123
  - POSTINSTALL.rdoc
124
124
  - rakefile.rb
125
125
  - README.textile
@@ -131,11 +131,15 @@ files:
131
131
  - test/fixtures/compc/simple/SomeFile.as
132
132
  - test/fixtures/flashplayer/AsUnit Runner.swf
133
133
  - test/fixtures/mxmlc/simple/SomeFile.as
134
+ - test/fixtures/sdk/fdb
135
+ - test/fixtures/sdk/mxmlc
134
136
  - test/unit/adl_test.rb
135
137
  - test/unit/adt_test.rb
136
138
  - test/unit/amxmlc_test.rb
137
139
  - test/unit/class_generator_test.rb
138
140
  - test/unit/compc_test.rb
141
+ - test/unit/fcsh_test.rb
142
+ - test/unit/fdb_test.rb
139
143
  - test/unit/flash_helper_test.rb
140
144
  - test/unit/flashplayer_log_file_test.rb
141
145
  - test/unit/flashplayer_mm_config_test.rb
@@ -146,6 +150,8 @@ files:
146
150
  - test/unit/mxmlc_test.rb
147
151
  - test/unit/project_generator_test.rb
148
152
  - test/unit/test_helper.rb
153
+ - test-stderr.log
154
+ - test-stdout.log
149
155
  - VERSION
150
156
  has_rdoc: true
151
157
  homepage: http://www.adobe.com/products/flex