flashsdk 1.0.21.pre → 1.0.22.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/VERSION +1 -1
- data/lib/flashsdk/asdoc.rb +15 -1
- data/lib/flashsdk/compiler_base.rb +488 -110
- data/lib/flashsdk/generators/class_generator.rb +4 -0
- data/lib/flashsdk/generators/templates/rakefile.rb +22 -11
- data/lib/flashsdk/mxmlc.rb +40 -0
- metadata +3 -8
- data/doc/adl-list.txt +0 -4
- data/doc/adt-list.txt +0 -12
- data/doc/compc-list.txt +0 -130
- data/doc/mxmlc-advanced-list.txt +0 -122
- data/doc/mxmlc-list.txt +0 -55
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.22.pre
|
data/lib/flashsdk/asdoc.rb
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
module FlashSDK
|
2
2
|
|
3
|
+
##
|
4
|
+
# The AsDoc executable is a wrapper around the Flex SDK binary of the same name.
|
5
|
+
#
|
6
|
+
# Following is a simple example of the asdoc Rake task:
|
7
|
+
#
|
8
|
+
# desc "Generate documentation at <%= doc %>/"
|
9
|
+
# asdoc 'doc' do |t|
|
10
|
+
# t.doc_sources << 'src'
|
11
|
+
#
|
12
|
+
# # Exclude test main file
|
13
|
+
# t.exclude_sources << 'src/SomeProjectRunner.as'
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
# @see CompilerBase
|
17
|
+
#
|
3
18
|
class AsDoc < CompilerBase
|
4
19
|
|
5
20
|
##
|
@@ -31,7 +46,6 @@ module FlashSDK
|
|
31
46
|
##
|
32
47
|
# List of source file to include in the documentation.
|
33
48
|
add_param :doc_sources, Files
|
34
|
-
|
35
49
|
add_param_alias :ds, :doc_sources
|
36
50
|
|
37
51
|
##
|