public
Description: A simple command to create an empty ActionScript project for MTASC + SWFMILL + Rake
Homepage:
Clone URL: git://github.com/bomberstudios/fluby.git
fluby /
name age message
file .gitignore Mon Nov 03 07:32:06 -0800 2008 Unignore test folder [bomberstudios]
file Changelog Sat Oct 10 23:24:03 -0700 2009 Moved gem to gemcutter.org. Use Jeweler for gem... [bomberstudios]
file README.mdown Tue Dec 01 07:53:00 -0800 2009 updated documentation [bomberstudios]
file Rakefile Thu Oct 15 09:24:24 -0700 2009 v0.7.1 - Rewrote the whole thing :) - it cre... [bomberstudios]
file VERSION Tue Dec 01 07:54:10 -0800 2009 v0.7.4 [bomberstudios]
directory bin/ Tue Dec 01 02:23:51 -0800 2009 build the project when running 'fluby' without ... [bomberstudios]
file fluby.gemspec Tue Dec 01 07:54:10 -0800 2009 v0.7.4 [bomberstudios]
directory lib/ Tue Dec 01 07:53:59 -0800 2009 fix rake task in project [bomberstudios]
directory test/ Thu Oct 15 09:24:24 -0700 2009 v0.7.1 - Rewrote the whole thing :) - it cre... [bomberstudios]
README.mdown

fluby

A simple command to create an empty ActionScript project for MTASC + SWFMILL + Rake

Installation

gem install fluby

Fluby requires the 'mtasc' and 'swfmill' executables somewhere on your path.

Usage

New project

To create a new project:

fluby create ProjectName

Compilation

To compile your brand new project:

cd ProjectName
fluby

That should generate a 'ProjectName.swf' file on the 'deploy' folder. The SWF file is debug-enabled (i.e: you can see the trace() output if you have a debug Flash Player). If you want to release your project without debug information, run

fluby release

More Rake tasks

There are other rake tasks available:

rake package  # Creates a ZIP file containing your SWF file on the 'pkg' folder
rake test # Opens a HTML file with your SWF for testing on your default browser (available on Mac only)

Updating from old fluby versions

If you have an existing project that uses fluby, you can update the code by running:

fluby update

inside your project folder.