flashsdk 1.0.21.pre → 1.0.22.pre

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.21.pre
1
+ 1.0.22.pre
@@ -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
  ##