Sha256: b9e6f4d66cda8c5a4ed2b451d64fbf0b6117d77a468d233fce6536b29277aa6e

Contents?: true

Size: 1.9 KB

Versions: 23

Compression:

Stored size: 1.9 KB

Contents

module Sprout
class ADLTask < ToolTask
#         Specifies the directory containing the runtime to use. If not 
#         specified, the runtime directory in the same SDK as the ADL program
#         will be used. If you move ADL out of its SDK folder, then you must 
#         specify the runtime directory. On Windows, specify the directory 
#         containing the Adobe AIR directory. On Mac OSX, specify the directory 
#         containing Adobe AIR.framework.
def runtime=(file)
  @runtime = file
end

#         Turns off debugging support. If used, the application process cannot 
#         connect to the Flash debugger and dialogs for unhandled exceptions are
#         suppressed. 
#         
#         Trace statements still print to the console window. Turning off 
#         debugging allows your application to run a little faster and also 
#         emulates the execution mode of an installed application more closely.
def nodebug=(boolean)
  @nodebug = boolean
end

#         Assigns the specified value as the publisher ID of the AIR application 
#         for this run. Specifying a temporary publisher ID allows you to test 
#         features of an AIR application, such as communicating over a local 
#         connection, that use the publisher ID to help uniquely identify an 
#         application. 
#         
#         The final publisher ID is determined by the digital certificate used to 
#         sign the AIR installation file.
def pubid=(string)
  @pubid = string
end

# The application descriptor file.
def application_descriptor=(file)
  @application_descriptor = file
end

#         The root directory of the application to run. If not 
#         specified, the directory containing the application 
#         descriptor file is used.
def root_directory=(file)
  @root_directory = file
end

#         Passed to the application as command-line arguments.
def arguments=(string)
  @arguments = string
end

end
end

Version data entries

23 entries across 22 versions & 1 rubygems

Version Path
sprout-as3-bundle-1.0.37 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.36 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.32 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.31 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.29 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.30 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.20 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-0.2.9 lib/sprout/tasks/adl_documentation.rb
sprout-as3-bundle-1.0.14 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-0.2.9 lib/sprout/tasks/adt_rdoc.rb
sprout-as3-bundle-1.0.10 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.11 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.12 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-0.1.45 lib/sprout/tasks/adt_doc.rb
sprout-as3-bundle-1.0.21 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-0.2.2 lib/sprout/tasks/adt_rdoc.rb
sprout-as3-bundle-0.2.3 lib/sprout/tasks/adt_rdoc.rb
sprout-as3-bundle-0.2.1 lib/sprout/tasks/adt_rdoc.rb
sprout-as3-bundle-1.0.9 lib/sprout/tasks/adt_documentation.rb
sprout-as3-bundle-1.0.8 lib/sprout/tasks/adt_documentation.rb