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: 3 months ago
JSON representation
Spec is a framework in Pharo for describing user interfaces.
- Host: GitHub
- URL: https://github.com/pharo-spec/spec
- Owner: pharo-spec
- License: mit
- Created: 2018-10-01T11:54:05.000Z (over 6 years ago)
- Default Branch: Pharo13
- Last Pushed: 2025-03-28T14:50:09.000Z (3 months ago)
- Last Synced: 2025-04-04T23:07:35.431Z (3 months ago)
- Topics: gui, pharo, smalltalk, spec
- Language: Smalltalk
- Size: 6.87 MB
- Stars: 64
- Watchers: 10
- Forks: 68
- Open Issues: 306
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Spec
Spec is a framework in Pharo for describing user interfaces.
[](https://github.com/pharo-spec/Spec/actions/workflows/spec-all.yml)
[](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
```