app_generators/airake/templates/README in airake-0.1.4 vs app_generators/airake/templates/README in airake-0.1.5

- old
+ new

@@ -1,36 +1,46 @@ == Setup -Path to have access to adl and adt: +To include mxmlc, adl and adt (from Flex Builder): + export PATH="/Applications/Adobe Flex Builder 3/sdks/moxie/bin:$PATH" + +To include adl and adt (from Apollo SDK): export PATH="/Applications/ApolloSDK/bin:$PATH" -Path to have access to mxmlc, etc. (flex compiler): - export PATH="/Applications/Adobe Flex Builder 3/sdks/moxie/bin:$PATH" +== Creating an AIR project + + airake path/to/MyProject com.company.MyProject +will build a project scaffold with application name of MyProject and application id (used for AIR descriptor) of com.company.MyProject + +The project includes as3corelib and flexunit, and test scaffolding as well. + == Tasks - # Start FCSHD - rake start_fcshd + Run: rake --tasks # Compiling - rake compile + rake air:compile # Running air debug launcher (ADL) - rake adl + rake air:adl + + # Start FCSHD (for faster compilation) + rake air:start_fcshd # Stop FCSHD - rake stop_fcsh + rake air:stop_fcsh # Restart FCSHD - rake restart_fcshd + rake air:restart_fcshd # Running alternate MXML, (the following expects src/Test-app.xml descriptor file) - rake adl MXML=src/Test.mxml + rake air:adl MXML=src/Test.mxml # Run ADL with debug enabled - rake adl DEBUG=true + rake air:adl DEBUG=true # Testing - rake test + rake air:test # Package AIR file - rake package + rake air:package