This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Gabriel Handford (author)
Sun Oct 12 15:26:05 -0700 2008
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Jul 15 10:06:06 -0700 2008 | [gabriel] |
| |
License.txt | Tue May 13 13:50:32 -0700 2008 | [gabriel] |
| |
README | Tue May 13 13:50:32 -0700 2008 | [gabriel] |
| |
Rakefile | Wed May 28 13:44:33 -0700 2008 | [gabriel] |
| |
airake.yml | Tue May 13 13:50:32 -0700 2008 | [gabriel] |
| |
build-swc.xml | Sun Oct 12 15:26:05 -0700 2008 | [Gabriel Handford] |
| |
lib/ | Tue May 13 13:50:32 -0700 2008 | [gabriel] |
| |
script/ | Tue May 13 13:50:32 -0700 2008 | [gabriel] |
| |
src/ | Sun Oct 12 15:26:05 -0700 2008 | [Gabriel Handford] |
| |
test/ | Sun Oct 12 15:26:05 -0700 2008 | [Gabriel Handford] |
README
== Setup Flex SDK: http://labs.adobe.com/technologies/flex/sdk/flex3sdk.html To include mxmlc and fcsh (from Flex SDK): export PATH="/path/to/flex_sdk_3/bin" AIR SDK: http://labs.adobe.com/downloads/airsdk.html To include adl and adt (from AIR SDK): export PATH="/path/to/air_sdk/bin:$PATH" == Tasks # View all tasks rake --tasks # Compiling rake air:compile # Running air debug launcher (ADL) rake air:adl # Start FCSHD (for faster compilation) rake fcsh:start # Stop FCSHD rake fcsh:stop # Restart FCSHD rake fcsh:restart # Running alternate MXML, (we expect src/Test-app.xml descriptor) rake air:adl MXML=src/Test.mxml # Run ADL with debug disabled rake air:adl DEBUG=false # Testing rake air:test # Package AIR file rake air:package == Adding other tasks Add tasks to the rakefile, for example: # Run ADL for Catalog mxml task :catalog do ENV["MXML"] = "src/catalog/Catalog.mxml" Rake::Task["air:adl"].invoke end == Override default settings for Rakefile This is experimental. In the Rakefile, specify: # Override default settings, this is experimental # cwd = File.expand_path(File.dirname(__FILE__)) #ENV["AMXMLC_PATH"] = "mxmlc" #ENV["ADT_PATH"] = "adt" #ENV["BIN_DIR"] = "#{cwd}/bin" #ENV["SRC_DIR"] = "#{cwd}/src" #ENV["LIB_DIR"] = "#{cwd}/lib" #ENV["TEST_DIR"] = "#{cwd}/test" #ENV["APPXML_PATH"] = "#{cwd}/src/MyProject-app.xml" #ENV["AIR_PATH"] = "#{cwd}/bin/MyProject.air" #ENV["SWF_PATH"] = "#{cwd}/bin/MyProject.swf" #ENV["AMXMLC_EXTRA_OPTS"] = ... #ENV["ADL_EXTRA_OPTS"] = ... #ENV["ADT_EXTRA_OPTS"] = ...




