Moose is an extensive platform for software and data analysis.
Moose is an open-source software. It was started at the Software Composition Group of the University of Bern in 1996 and is currently contributed to and used by several partners. It provides a variety of services such as importing and parsing data, modeling, measuring, querying, mining, and building interactive and visual analysis tools.
Please refer to the moose wiki for the documentation.
Get a built Moose Image from Pharo launcher
Execute this in a Pharo 12 or 13 image:
Metacello new
baseline: 'Moose';
repository: 'github://moosetechnology/Moose:development/src';
onWarningLog;
load
Execute this in a Pharo 11 or 12 image:
[ Metacello new
baseline: 'Moose';
repository: 'github://moosetechnology/Moose:v11.x.x/src';
load ]
on: MCMergeOrLoadWarning
do: [ :warning | warning load ]
Execute this in a Pharo 10 image:
[ Metacello new
baseline: 'Moose';
repository: 'github://moosetechnology/Moose:v10.x.x/src';
load ]
on: MCMergeOrLoadWarning
do: [ :warning | warning load ]