require 'rubygems' require 'asproject' ############################################ # Launch the Application using Flash Player 8 task :run => [:compile_main] # Assign this to the default task task :default => [:run] AsProject::FlashPlayer.new(:run) do |t| t.version = 8 t.swf = 'bin/<%= project_name %>.swf' end ############################################ # Launch the Test Suites using Flash Player 8 task :test => [:compile_tests] AsProject::FlashPlayer.new(:test) do |t| t.version = 8 t.swf = 'bin/<%= project_name %>Runner.swf' end ############################################ # Compile your library using SWFMill AsProject::SWFMill.new(:compile_skin) do |t| t.input = 'assets/img/skins/default' t.template = 'assets/img/skins/SWFMillTemplate.erb' t.output = 'bin/<%= project_name %>Skin.swf' end ############################################ # Compile your Application using HAMTASC task :compile_main => [:compile_skin] AsProject::MTASC.new(:compile_main) do |t| t.input = '<%= project_name %>' t.main = true t.version = 8 t.frame = 2 t.swf = 'bin/<%= project_name %>Skin.swf' t.out = 'bin/<%= project_name %>.swf' t.cp << 'src' end ############################################ # Compile your Application using HAMTASC AsProject::MTASC.new(:compile_tests) do |t| t.input = '<%= project_name %>Runner' t.version = 8 t.frame = 2 t.main = true t.swf = 'bin/<%= project_name %>Skin.swf' t.out = 'bin/<%= project_name %>Runner.swf' t.cp << 'src' t.cp << 'test' t.cp << 'lib/asunit' end ############################################