Skip to content

Instantly share code, notes, and snippets.

@devboy
Created April 18, 2011 13:19
Show Gist options
  • Save devboy/925311 to your computer and use it in GitHub Desktop.
Save devboy/925311 to your computer and use it in GitHub Desktop.
require 'buildr/as3'
define "AdvancedExample" do
define "MyApplication" do
compile.using :mxmlc
compile.options[:flexsdk] = FlexSDK.new("4.1.0.16076")
compile.options[:main] = _(:src,:main,:as3) + "/MyApplication.as"
# define the ApparatToolkit to use by version
compile.options[:apparat] = ApparatToolkit.new("1.0-RC9")
# execute tdsi with the parameter a and f
compile { apparat_tdsi :a => true, :f => true }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment