When I just started with sprouts I used to copy all 3d party libraries to the "lib" folder and added this to rakefile:
t.library_path << "lib/signals/signals.swc"
or
t.source_path << "lib/robotlegs/src"
It works but I would to know how to link libraries packaged into gems. What am I doing:
- in gemscpec: gem "as3signals", ">= 0.7.1"
- run "bundle install"
- in rakefile: require "as3signals"
- in rakefile: library :as3signals
- in rakefile: mxmlc "MyApp.swf" => :as3signals do |t|
But if I have multiple libraries packaged into gems (eg asunit4 and as3signals) how could I link them all?
Thanks in advance