Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.08 KB

how-to-load-in-pharo.md

File metadata and controls

35 lines (28 loc) · 1.08 KB

How to load Willow in a Pharo image

Using Metacello

  1. Download a Pharo VM and image

  2. Open your Pharo image

  3. Open a Playground

  4. Evaluate:

    Metacello new
      baseline: 'Willow';
      repository: 'github://ba-st/Willow:release-candidate';
      load: 'Development'.

Change release-candidate to some released version if you want a pinned version

Using Iceberg

  1. Download pharo VM and image
  2. Open your Pharo image
  3. Open Iceberg
  4. Click the Add repository button
  5. Select Clone from github.com and enter ba-st as owner name and Willow as project name
  6. Click Ok
  7. Select the repository in the main Iceberg window
  8. Open the contextual menu and select Metacello -> Install baseline of Willow ...
  9. Type Development and click Ok

After Iceberg cloned a repository, it will be checked-out at the default branch (in this case release-candidate). If you want to work on a different branch or commit, perform the checkout before the baseline installation step.