Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tinchodias/containers-rope
An implementation of ropes extracted from bloc graphics system
https://github.com/tinchodias/containers-rope
Last synced: 7 days ago
JSON representation
An implementation of ropes extracted from bloc graphics system
- Host: GitHub
- URL: https://github.com/tinchodias/containers-rope
- Owner: tinchodias
- Created: 2021-10-21T21:58:04.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-21T22:50:28.000Z (about 3 years ago)
- Last Synced: 2024-10-07T18:41:02.044Z (about 1 month ago)
- Language: Smalltalk
- Size: 90.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Containers-Rope
An implementation of ropes extracted from Bloc graphics system developed by feenk.com and probably Aliaksei Syrel.![https://github.com/pharo-containers/Containers-Rope/actions](https://github.com/pharo-containers/Containers-Rope/workflows/Pharo9/badge.svg)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://img.shields.io/badge/license-MIT-blue.svg)
[![Coverage Status](https://coveralls.io/repos/github/pharo-containers/Containers-Rope/badge.svg?branch=master)](https://coveralls.io/github/pharo-containers/Containers-Rope?branch=master)## Loading
The following script installs Containers-Rope in Pharo.```smalltalk
Metacello new
baseline: 'ContainersRope';
repository: 'github://pharo-containers/Containers-Rope/src';
load.
```## If you want to depend on it
Add the following code to your Metacello baseline or configuration
```smalltalk
spec
baseline: 'ContainersRope'
with: [ spec repository: 'github://pharo-containers/Containers-Rope/src' ].
```