Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 863 Bytes

File metadata and controls

31 lines (20 loc) · 863 Bytes

PatternBuffer

A Pharo/Smalltalk library for interacting with linked data models via contextual views.

Requirements

For Linux (Ubuntu 24.04 Recommended)

  • Pharo (13+ recommended)
  • python3-venv (used for installing RDFLIB)

Loading instructions

To load the latest development branch, open a playground window (Ctrl+O+W) and evaluate:

Metacello new baseline: 'PatternBuffer';
    repository: 'github://capsulecorplab/patternbuffer:main/src';
    load.

To load the latest release, open a playground window (Ctrl+O+W) and evaluate:

Metacello new baseline: 'PatternBuffer';
    repository: 'github://capsulecorplab/patternbuffer:v0.8.0/src';
    load.

NOTE: Evaluate by highlighting the code, then either right-click on the highlighted code and click Do it or press Ctrl+D.