23.1 Installation
inFusion is changing, and the instructions below are no longer valid. They will be updated once the situation stabilizes.
- Checkout the sources from github:
git clone git://github.com/girba/automoose.git
- Download inFusion from:
http://www.intooitus.com/infusion/download/inFusion.zip
- Unzip and copy the contents of the
tools/inFusion/
folder into theautomoose/inFusion/
folder - Download the dedicated Pharo virtual machine from:
http://www.pharo-project.org/pharo-download
- Copy the Pharo VM into the
automoose/pharo/
folder - Copy the sources of the system to study in the
automoose/src/
folder - Edit
automoose/runWithInfusion.sh
to make sure thePHARO_VM
variable points to your virtual machine. - Execute
automoose/run.sh
Optionally, it is possible to parameterize the run.sh
script with several parameters:
-
-f
specifies an external source folder. -
-s
specifies a script to be executed by Moose. This can be specified multiple times. The order counts.
For example, the following script triggers AutoMoose on the sources from the /mysources
folder and produces an image that first imports the MSE file, then opens the MoosePanel and finally saves and quits:
./runWithInfusion.sh -f /mysources -s import-mse -s open-moose-panel -s save-and-quit-image