Skip to content

Commit

Permalink
Merge pull request #84 from jecisc/83-add-readme-instructions
Browse files Browse the repository at this point in the history
Add install instructions to the README
  • Loading branch information
jecisc authored Oct 22, 2018
2 parents 0411400 + 3048322 commit 3e9dae9
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,18 @@

Spec is a framework in Pharo for describing user interfaces.

[![Build Status](https://travis-ci.org/pharo-spec/Spec.svg?branch=master)](https://travis-ci.org/pharo-spec/Spec)
[![Build Status](https://travis-ci.org/pharo-spec/Spec.svg?branch=master)](https://travis-ci.org/pharo-spec/Spec)

## Install Spec

It is possible to load the latest version of Spec in Pharo 7 with this script:

```Smalltalk
Metacello new
githubUser: 'pharo-spec' project: 'Spec' commitish: 'master' path: 'src';
baseline: 'Spec';
onConflict: [ :e | e useIncoming ];
onUpgrade: [ :e | e useIncoming ];
ignoreImage;
load
```

0 comments on commit 3e9dae9

Please sign in to comment.