Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ObjectProfile/Roassal2
Agile Visualization Engine for Pharo and VisualWorks
https://github.com/ObjectProfile/Roassal2
analysis code software-quality visualization
Last synced: 3 months ago
JSON representation
Agile Visualization Engine for Pharo and VisualWorks
- Host: GitHub
- URL: https://github.com/ObjectProfile/Roassal2
- Owner: ObjectProfile
- License: mit
- Created: 2017-04-07T15:30:42.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-04-19T22:39:35.000Z (over 1 year ago)
- Last Synced: 2024-07-05T21:08:47.617Z (4 months ago)
- Topics: analysis, code, software-quality, visualization
- Language: Smalltalk
- Homepage: http://AgileVisualization.com
- Size: 10.4 MB
- Stars: 26
- Watchers: 11
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-pharo-ml - Roassal - visualization engine for the Pharo and VisualWorks. Provides powerful tools for charting, plotting, and other data visualization (Data Visualization)
README
# Roassal2
[![Test P8](https://github.com/ObjectProfile/Roassal2/actions/workflows/runOnPharo8.yml/badge.svg)](https://github.com/ObjectProfile/Roassal2/actions/workflows/runOnPharo8.yml)
[![Test P9](https://github.com/ObjectProfile/Roassal2/actions/workflows/runTestPharo9.yml/badge.svg)](https://github.com/ObjectProfile/Roassal2/actions/workflows/runTestPharo9.yml)Roassal2 is a visualization engine for the Pharo and VisualWorks programming language and environment.
Extensive documentation is available on http://AgileVisualization.com---
## VisualWorksThe distribution of Roassal for VisualWorks is in the Cincom public store. Simply look for `roassal2-full` on the public store. Note that your need to have the Cairo libraries installed along with the VisualWorks installation.
---
## Pharo 8 & Pharo 9Execute the following code snippet to load Roassal2 in a fresh Pharo 8 or Pharo 9 image:
```Smalltalk
Metacello new
baseline: 'Roassal2';
repository: 'github://ObjectProfile/Roassal2/src';
load.
```You can also load Roassal2 from the Pharo Catalog browser.
If you have a local copy of Roassal, you can do the following:
```Smalltalk
Metacello new
baseline: 'Roassal2';
repository: 'gitlocal:///Users/alexandrebergel/Dropbox/GitRepos/Roassal2' ;
lock;
load.
```If you wish to set a dependency to Roassal2 in your application, you simply need to add in your baseline:
```Smalltalk
spec baseline: 'Roassal2' with: [
spec repository: 'github://ObjectProfile/Roassal2/src' ].
```---
## Pharo 7Roassal2 is frozen for Pharo 7. You can load it using:
```Smalltalk
Metacello new
baseline: 'Roassal2';
repository: 'github://ObjectProfile/Roassal2:pharo7/src';
load
```---
## Pharo 6.1You can load Roassal in Pharo 6.1 using the following script:
```Smalltalk
Gofer it
smalltalkhubUser: 'ObjectProfile' project: 'Roassal2';
configurationOf: 'Roassal2';
loadVersion: '1.59'
```