flashsdk 1.0.29.pre → 1.0.33.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.
- data/Gemfile +1 -7
- data/VERSION +1 -1
- data/flashsdk.gemspec +7 -4
- data/lib/flashsdk/acompc.rb +29 -0
- data/lib/flashsdk/adl.rb +23 -4
- data/lib/flashsdk/adt.rb +51 -36
- data/lib/flashsdk/compc.rb +7 -4
- data/lib/flashsdk/compiler_base.rb +52 -11
- data/lib/flashsdk/generators/templates/Flex4Main.css +2 -2
- data/lib/flashsdk.rb +1 -0
- data/lib/flex4.rb +53 -23
- data/rakefile.rb +42 -42
- data/test/fixtures/acompc/simple/SomeAirFile.as +11 -0
- data/test/fixtures/sdk/mxmlc +3 -4
- data/test/unit/acompc_test.rb +37 -0
- data/test/unit/adl_test.rb +9 -9
- data/test/unit/adt_test.rb +49 -30
- data/test/unit/amxmlc_test.rb +2 -3
- data/test/unit/compc_test.rb +1 -1
- data/test/unit/fcsh_test.rb +2 -2
- data/test/unit/flex_compiler_options_test.rb +213 -0
- data/test/unit/mxmlc_test.rb +1 -3
- metadata +63 -150
- data/Gemfile.lock +0 -23
metadata
CHANGED
@@ -1,77 +1,59 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: flashsdk
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 1
|
7
|
-
- 0
|
8
|
-
- 29
|
9
|
-
- pre
|
10
|
-
version: 1.0.29.pre
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.33.pre
|
5
|
+
prerelease: 7
|
11
6
|
platform: ruby
|
12
|
-
authors:
|
7
|
+
authors:
|
13
8
|
- Luke Bayes
|
14
9
|
autorequire:
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
dependencies:
|
21
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2012-03-11 00:00:00.000000000Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
22
15
|
name: sprout
|
23
|
-
requirement: &
|
16
|
+
requirement: &70291385113580 !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
26
|
-
- -
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
segments:
|
29
|
-
- 1
|
30
|
-
- 1
|
31
|
-
- 15
|
32
|
-
- pre
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
33
21
|
version: 1.1.15.pre
|
34
22
|
type: :runtime
|
35
23
|
prerelease: false
|
36
|
-
version_requirements: *
|
37
|
-
- !ruby/object:Gem::Dependency
|
24
|
+
version_requirements: *70291385113580
|
25
|
+
- !ruby/object:Gem::Dependency
|
38
26
|
name: shoulda
|
39
|
-
requirement: &
|
27
|
+
requirement: &70291385112620 !ruby/object:Gem::Requirement
|
40
28
|
none: false
|
41
|
-
requirements:
|
42
|
-
- -
|
43
|
-
- !ruby/object:Gem::Version
|
44
|
-
|
45
|
-
- 0
|
46
|
-
version: "0"
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
47
33
|
type: :development
|
48
34
|
prerelease: false
|
49
|
-
version_requirements: *
|
50
|
-
- !ruby/object:Gem::Dependency
|
35
|
+
version_requirements: *70291385112620
|
36
|
+
- !ruby/object:Gem::Dependency
|
51
37
|
name: mocha
|
52
|
-
requirement: &
|
38
|
+
requirement: &70291385111880 !ruby/object:Gem::Requirement
|
53
39
|
none: false
|
54
|
-
requirements:
|
55
|
-
- -
|
56
|
-
- !ruby/object:Gem::Version
|
57
|
-
|
58
|
-
- 0
|
59
|
-
version: "0"
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
60
44
|
type: :development
|
61
45
|
prerelease: false
|
62
|
-
version_requirements: *
|
46
|
+
version_requirements: *70291385111880
|
63
47
|
description: The Flash SDK Rubygem is brought to you by Project Sprouts (http://projectsprouts.org)
|
64
48
|
email: projectsprouts@googlegroups.com
|
65
|
-
executables:
|
49
|
+
executables:
|
66
50
|
- sprout-as3
|
67
51
|
- sprout-flex
|
68
52
|
- flashplayer
|
69
53
|
- flashlog
|
70
54
|
extensions: []
|
71
|
-
|
72
55
|
extra_rdoc_files: []
|
73
|
-
|
74
|
-
files:
|
56
|
+
files:
|
75
57
|
- bin/flashlog
|
76
58
|
- bin/flashplayer
|
77
59
|
- bin/sprout-as3
|
@@ -80,7 +62,6 @@ files:
|
|
80
62
|
- ext/OpenFlashPlayerForDumbassOSX.scpt
|
81
63
|
- flashsdk.gemspec
|
82
64
|
- Gemfile
|
83
|
-
- Gemfile.lock
|
84
65
|
- lib/flashplayer/errors.rb
|
85
66
|
- lib/flashplayer/executable.rb
|
86
67
|
- lib/flashplayer/log_file.rb
|
@@ -92,6 +73,7 @@ files:
|
|
92
73
|
- lib/flashplayer/task.rb
|
93
74
|
- lib/flashplayer/trust.rb
|
94
75
|
- lib/flashplayer.rb
|
76
|
+
- lib/flashsdk/acompc.rb
|
95
77
|
- lib/flashsdk/adl.rb
|
96
78
|
- lib/flashsdk/adt.rb
|
97
79
|
- lib/flashsdk/amxmlc.rb
|
@@ -124,6 +106,7 @@ files:
|
|
124
106
|
- POSTINSTALL.rdoc
|
125
107
|
- rakefile.rb
|
126
108
|
- README.textile
|
109
|
+
- test/fixtures/acompc/simple/SomeAirFile.as
|
127
110
|
- test/fixtures/air/simple/SomeProject.apk
|
128
111
|
- test/fixtures/air/simple/SomeProject.as
|
129
112
|
- test/fixtures/air/simple/SomeProject.mxml
|
@@ -138,6 +121,7 @@ files:
|
|
138
121
|
- test/fixtures/mxmlc/simple/SomeFile.as
|
139
122
|
- test/fixtures/sdk/fdb
|
140
123
|
- test/fixtures/sdk/mxmlc
|
124
|
+
- test/unit/acompc_test.rb
|
141
125
|
- test/unit/adl_test.rb
|
142
126
|
- test/unit/adt_test.rb
|
143
127
|
- test/unit/amxmlc_test.rb
|
@@ -155,124 +139,53 @@ files:
|
|
155
139
|
- test/unit/flashplayer_module_test.rb
|
156
140
|
- test/unit/flashplayer_task_test.rb
|
157
141
|
- test/unit/flashplayer_trust_test.rb
|
142
|
+
- test/unit/flex_compiler_options_test.rb
|
158
143
|
- test/unit/flex_generator_test.rb
|
159
144
|
- test/unit/mxmlc_test.rb
|
160
145
|
- test/unit/project_generator_test.rb
|
161
146
|
- test/unit/test_helper.rb
|
162
147
|
- VERSION
|
163
|
-
has_rdoc: true
|
164
148
|
homepage: http://www.adobe.com/products/flex
|
165
149
|
licenses: []
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
++++++++++++++++++++++++++++++++
|
187
|
-
Next Steps:
|
188
|
-
|
189
|
-
# Generate a new class, test case and test suite:
|
190
|
-
sprout-class utils.MathUtil
|
191
|
-
|
192
|
-
# Compile and run the test harness:
|
193
|
-
rake test
|
194
|
-
|
195
|
-
# List available rake tasks:
|
196
|
-
rake -T
|
197
|
-
|
198
|
-
# List available generators:
|
199
|
-
sprout-
|
200
|
-
(followed by the TAB key)
|
201
|
-
|
202
|
-
++++++++++++++++++++++++++++++++
|
203
|
-
To use FCSH, simply start the service,
|
204
|
-
and call the fcsh task before any other
|
205
|
-
mxmlc or compc task:
|
206
|
-
|
207
|
-
# Open a new terminal and from your project:
|
208
|
-
rake fcsh:start
|
209
|
-
|
210
|
-
# Open a new terminal and from your project:
|
211
|
-
rake fcsh test
|
212
|
-
|
213
|
-
++++++++++++++++++++++++++++++++
|
214
|
-
To use FDB, simply call the fdb task
|
215
|
-
before any flashplayer task:
|
216
|
-
|
217
|
-
# Run the default task with FDB:
|
218
|
-
rake fdb test
|
219
|
-
|
220
|
-
(type, 'help' for more info when prompted)
|
221
|
-
|
222
|
-
++++++++++++++++++++++++++++++++
|
223
|
-
You can also launch any SWF file using
|
224
|
-
a debug Flash Player with:
|
225
|
-
|
226
|
-
flashplayer bin/SomeProject.swf
|
227
|
-
|
228
|
-
Or run a SWF with FDB like:
|
229
|
-
|
230
|
-
flashplayer --fdb bin/SomeProject.swf
|
231
|
-
|
232
|
-
++++++++++++++++++++++++++++++++
|
233
|
-
You can also tail your system's flashlog
|
234
|
-
while running a SWF or HTML page with:
|
235
|
-
|
236
|
-
flashlog
|
237
|
-
|
238
|
-
++++++++++++++++++++++++++++++++
|
239
|
-
Issues or Questions?
|
240
|
-
|
241
|
-
Troubleshooting at:
|
242
|
-
http://projectsprouts.org/troubleshooting.html
|
243
|
-
|
244
|
-
Email us at:
|
245
|
-
projectsprouts@googlegroups.com
|
246
|
-
|
150
|
+
post_install_message: ! "++++++++++++++++++++++++++++++++\nYou have successfully installed
|
151
|
+
the Project Sprouts Flash SDK!\n\nTo get started with a new ActionScript 3 project:\n\n
|
152
|
+
\ # Generate a project named 'SomeProject'\n sprout-as3 SomeProject\n\n # Change
|
153
|
+
directory to the newly-created directory:\n cd SomeProject\n\n # Install whatever
|
154
|
+
additional gems are required \n # by this project Gemfile:\n bundle install\n\n
|
155
|
+
\ # Use Rake to run the default task:\n rake\n\n++++++++++++++++++++++++++++++++\nNext
|
156
|
+
Steps:\n\n # Generate a new class, test case and test suite:\n sprout-class utils.MathUtil\n\n
|
157
|
+
\ # Compile and run the test harness:\n rake test\n\n # List available rake tasks:\n
|
158
|
+
\ rake -T\n\n # List available generators:\n sprout-\n (followed by the TAB key)\n\n++++++++++++++++++++++++++++++++\nTo
|
159
|
+
use FCSH, simply start the service,\nand call the fcsh task before any other\nmxmlc
|
160
|
+
or compc task:\n\n # Open a new terminal and from your project:\n rake fcsh:start\n\n
|
161
|
+
\ # Open a new terminal and from your project:\n rake fcsh test\n\n++++++++++++++++++++++++++++++++\nTo
|
162
|
+
use FDB, simply call the fdb task\nbefore any flashplayer task:\n\n # Run the default
|
163
|
+
task with FDB:\n rake fdb test\n\n (type, 'help' for more info when prompted)\n\n++++++++++++++++++++++++++++++++\nYou
|
164
|
+
can also launch any SWF file using\na debug Flash Player with:\n\n flashplayer
|
165
|
+
bin/SomeProject.swf\n\nOr run a SWF with FDB like:\n\n flashplayer --fdb bin/SomeProject.swf\n\n++++++++++++++++++++++++++++++++\nYou
|
166
|
+
can also tail your system's flashlog\nwhile running a SWF or HTML page with:\n\n
|
167
|
+
\ flashlog\n\n++++++++++++++++++++++++++++++++\nIssues or Questions? \n\n Troubleshooting
|
168
|
+
at:\n http://projectsprouts.org/troubleshooting.html\n\n Email us at:\n projectsprouts@googlegroups.com\n\n"
|
247
169
|
rdoc_options: []
|
248
|
-
|
249
|
-
require_paths:
|
170
|
+
require_paths:
|
250
171
|
- lib
|
251
172
|
- lib
|
252
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
173
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
253
174
|
none: false
|
254
|
-
requirements:
|
255
|
-
- -
|
256
|
-
- !ruby/object:Gem::Version
|
257
|
-
|
258
|
-
|
259
|
-
version: "0"
|
260
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
175
|
+
requirements:
|
176
|
+
- - ! '>='
|
177
|
+
- !ruby/object:Gem::Version
|
178
|
+
version: '0'
|
179
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
261
180
|
none: false
|
262
|
-
requirements:
|
263
|
-
- -
|
264
|
-
- !ruby/object:Gem::Version
|
265
|
-
segments:
|
266
|
-
- 1
|
267
|
-
- 3
|
268
|
-
- 1
|
181
|
+
requirements:
|
182
|
+
- - ! '>'
|
183
|
+
- !ruby/object:Gem::Version
|
269
184
|
version: 1.3.1
|
270
185
|
requirements: []
|
271
|
-
|
272
186
|
rubyforge_project:
|
273
|
-
rubygems_version: 1.
|
187
|
+
rubygems_version: 1.8.10
|
274
188
|
signing_key:
|
275
189
|
specification_version: 3
|
276
190
|
summary: Adobe Flash SDK including mxmlc, compc, asdoc, adl, adt, optimizer and fdb
|
277
191
|
test_files: []
|
278
|
-
|
data/Gemfile.lock
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: http://rubygems.org/
|
3
|
-
specs:
|
4
|
-
archive-tar-minitar (0.5.2)
|
5
|
-
mocha (0.9.12)
|
6
|
-
open4 (1.0.1)
|
7
|
-
rake (0.9.2)
|
8
|
-
rubyzip (0.9.4)
|
9
|
-
shoulda (2.11.3)
|
10
|
-
sprout (1.1.15.pre)
|
11
|
-
archive-tar-minitar (= 0.5.2)
|
12
|
-
bundler (>= 0.9.19)
|
13
|
-
open4 (>= 0.9.6)
|
14
|
-
rake (>= 0.9.2)
|
15
|
-
rubyzip (= 0.9.4)
|
16
|
-
|
17
|
-
PLATFORMS
|
18
|
-
ruby
|
19
|
-
|
20
|
-
DEPENDENCIES
|
21
|
-
mocha
|
22
|
-
shoulda
|
23
|
-
sprout (>= 1.1.15.pre)
|