Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 763 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 763 Bytes

Spec

Spec is a framework in Pharo for describing user interfaces.

Spec-Pharo-Integration
Spec-dev

Install Spec

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

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