Skip to content

Instantly share code, notes, and snippets.

@lukebayes
Created March 3, 2010 09:34
Show Gist options
  • Save lukebayes/320477 to your computer and use it in GitHub Desktop.
Save lukebayes/320477 to your computer and use it in GitHub Desktop.
A very thin Sprouts Rakefile
require 'rubygems'
require 'sprout'
sprout 'as3'
mxmlc 'bin/SomeProject.swf' do |t|
t.input = 'src/SomeProject.as'
end
desc "Compile the SWF"
task :compile => 'bin/SomeProject.swf'
task :default => :compile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment