All Projects → ObjectProfile → Roassal2

ObjectProfile / Roassal2

Licence: MIT license
Agile Visualization Engine for Pharo and VisualWorks

Programming Languages

smalltalk
420 projects

Projects that are alternatives of or similar to Roassal2

micro-code-analyser
A tiny Node.js microservice to detect the language of a code snippet
Stars: ✭ 21 (-8.7%)
Mutual labels:  analysis, code
Security Code Scan
Vulnerability Patterns Detector for C# and VB.NET
Stars: ✭ 550 (+2291.3%)
Mutual labels:  analysis, code
Go Ethereum Code Analysis
No description or website provided.
Stars: ✭ 2,032 (+8734.78%)
Mutual labels:  analysis, code
custom-easings-with-keyframes
🏃 Make custom non-cubic-bezier easings using keyframes and animations with this online css code generator.
Stars: ✭ 15 (-34.78%)
Mutual labels:  code
wp-googlecodeprettify
一个基于 Google Code Prettify 实现的WordPress代码高亮插件,在TinyMCE编辑器中提供了一个插入代码的按钮。在文本编辑器中,加入了pre-js,pre-css,pre-html 3个快捷按钮;
Stars: ✭ 60 (+160.87%)
Mutual labels:  code
decaylanguage
Package to parse decay files, describe and convert particle decays between digital representations.
Stars: ✭ 34 (+47.83%)
Mutual labels:  analysis
character-extraction
Extracts character names from a text file and performs analysis of text sentences containing the names.
Stars: ✭ 40 (+73.91%)
Mutual labels:  analysis
php-tester
Run your PHP scribbles
Stars: ✭ 17 (-26.09%)
Mutual labels:  code
pandapower gui
A Graphical User Interface for the open source pandapower load flow program. [ I was so inexperienced when I started this, but maybe we can try again]
Stars: ✭ 28 (+21.74%)
Mutual labels:  analysis
spring-startup-analysis
Simple module to analyse bean construction in Java Spring
Stars: ✭ 76 (+230.43%)
Mutual labels:  analysis
census
📜Automated review of open source software projects
Stars: ✭ 111 (+382.61%)
Mutual labels:  analysis
Containerization-Automation
Study and Use of Containers and Automation Tools
Stars: ✭ 45 (+95.65%)
Mutual labels:  code
knime-r
KNIME Interactive R Statistics Integration
Stars: ✭ 18 (-21.74%)
Mutual labels:  analysis
react-native-awesome-pin
A highly interactive and customisable PIN code screen for React Native.
Stars: ✭ 28 (+21.74%)
Mutual labels:  code
flaskcode
A web based code editor on python flask framework.
Stars: ✭ 43 (+86.96%)
Mutual labels:  code
codes2pdf
Auto-generate a PDF notebook from your source codes (useful for ACM-ICPC)
Stars: ✭ 149 (+547.83%)
Mutual labels:  code
sandbox
Simple Windows Sandbox Configuration
Stars: ✭ 37 (+60.87%)
Mutual labels:  analysis
go-mnd
Magic number detector for Go.
Stars: ✭ 153 (+565.22%)
Mutual labels:  analysis
bcp-47
Parse and stringify BCP 47 language tags
Stars: ✭ 51 (+121.74%)
Mutual labels:  code
medium-code
A place to store my jupyter notebooks for my medium articles
Stars: ✭ 27 (+17.39%)
Mutual labels:  code

Roassal2

Test P8 Test P9

Roassal2 is a visualization engine for the Pharo and VisualWorks programming language and environment. Extensive documentation is available on http://AgileVisualization.com


VisualWorks

The 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 9

Execute the following code snippet to load Roassal2 in a fresh Pharo 8 or Pharo 9 image:

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:

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:

spec baseline: 'Roassal2' with: [ 
				spec repository: 'github://ObjectProfile/Roassal2/src' ].

Pharo 7

Roassal2 is frozen for Pharo 7. You can load it using:

Metacello new 
    baseline: 'Roassal2'; 
    repository: 'github://ObjectProfile/Roassal2:pharo7/src'; 
    load

Pharo 6.1

You can load Roassal in Pharo 6.1 using the following script:

Gofer it
    smalltalkhubUser: 'ObjectProfile' project: 'Roassal2';
    configurationOf: 'Roassal2';
    loadVersion: '1.59'
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].