Class: ASRake::Mxmlc
- Inherits:
-
BaseCompiler
- Object
- BaseExecutable
- BaseCompiler
- ASRake::Mxmlc
- Includes:
- Rake::DSL
- Defined in:
- lib/asrake/mxmlc.rb
Instance Attribute Summary collapse
-
#file_specs ⇒ Object
Returns the value of attribute file_specs.
Attributes inherited from BaseExecutable
#output, #output_dir, #output_file
Instance Method Summary collapse
- #generate_args ⇒ Object
-
#initialize(swf_file) ⇒ Mxmlc
constructor
A new instance of Mxmlc.
Methods inherited from BaseCompiler
#dynamically_link, #execute, #isAIR, #isAIR=, #statically_link, #statically_link_only_referenced_classes
Methods inherited from BaseExecutable
#execute, #merge_in, #output_is_dir?, #pathmap, #to_s, #to_str
Constructor Details
Instance Attribute Details
#file_specs ⇒ Object
Returns the value of attribute file_specs.
10 11 12 |
# File 'lib/asrake/mxmlc.rb', line 10 def file_specs @file_specs end |
Instance Method Details
#generate_args ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/asrake/mxmlc.rb', line 16 def generate_args mxmlc = super mxmlc << " -file-specs=#{file_specs}" if file_specs != nil return mxmlc end |