Method: Sprout::AsDocTask#source_path=
- Defined in:
- lib/sprout/tasks/asdoc_documentation.rb
#source_path=(paths) ⇒ Object
Adds directories or files to the source path. The Flex compiler searches directories in the source path for MXML or AS source files that are used in your Flex applications and includes those that are required at compile time.
You can use wildcards to include all files and subdirectories of a directory.
To link an entire library SWC file and not individual classes or directories, use the library-path option.
The source path is also used as the search path for the component compiler’s include-classes and include-resource-bundles options.
You can also use the += operator to append the new argument to the list of existing source path entries.
132 133 134 |
# File 'lib/sprout/tasks/asdoc_documentation.rb', line 132 def source_path=(paths) @source_path = paths end |