An implementation of ropes extracted from bloc graphics system
# Containers-Rope An implementation of ropes extracted from Bloc graphics system developed by feenk.com and probably Aliaksei Syrel.  [](https://img.shields.io/badge/license-MIT-blue.svg) [](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' ]. ```