Skip to content

moosetechnology/Moose

Repository files navigation

Development

Moose is an extensive platform for software and data analysis.

Moose is an open source software. It was started at the Software Composition Group from the University of Bern in 1996 and is currently contributed to and used by multiple partners. It offers multiple services ranging from importing and parsing data, to modeling, to measuring, querying, mining, and to building interactive and visual analysis tools.

Documentation

Please refer to the moose wiki for the documentation.

Installation

Get a built Moose Image from Pharo launcher

Download Moose gif

Load Moose in a Pharo image

Latest version: Moose 11

Execute this in a Pharo 11 image:

Metacello new
    baseline: 'Moose';
    repository: 'github://moosetechnology/Moose:development/src';
    onWarningLog;
    load

Stable version: Moose 10

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 ]

Old stable version: Moose 9

Execute this in a Pharo 9 image:

[ Metacello new
    baseline: 'Moose';
    repository: 'github://moosetechnology/Moose:v9.x.x/src';
    load ]
    on: MCMergeOrLoadWarning
    do: [ :warning | warning load ]

Famix generators