Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pharo-spec/spec

Spec is a framework in Pharo for describing user interfaces.
https://github.com/pharo-spec/spec

gui pharo smalltalk spec

Last synced: 4 days ago
JSON representation

Spec is a framework in Pharo for describing user interfaces.

Awesome Lists containing this project

README

        

# Spec

Spec is a framework in Pharo for describing user interfaces.

[![Spec-Pharo-Integration](https://github.com/pharo-spec/Spec/actions/workflows/spec-all.yml/badge.svg)](https://github.com/pharo-spec/Spec/actions/workflows/spec-all.yml)
[![Spec-dev](https://github.com/pharo-spec/Spec/actions/workflows/spec.yml/badge.svg)](https://github.com/pharo-spec/Spec/actions/workflows/spec.yml)

## Install Spec

Spec is included in any regular Pharo image.
It is possible to load the latest version executing following script:

```Smalltalk
Metacello new
repository: 'github://pharo-spec/Spec';
baseline: 'Spec2';
onConflict: [ :e | e useIncoming ];
onUpgrade: [ :e | e useIncoming ];
ignoreImage;
load
```