Pharo-dev-Extensions

Description

Extensions to Pharo and some of its frameworks that I find handy to use during development

Details

Source
GitHub
Dialect
pharo (25% confidence)
Created
Sept. 5, 2023
Updated
Sept. 5, 2023

Categories

Language Extensions

README excerpt

# Pharo-dev-Extensions
Extensions to Pharo and some of its frameworks that I find handy to use during development

There's a barebones way to load this package in. It might be deprecated by the time you're trying it. Feel free to rummage around the Iceberg code in Pharo ;-)

Anyway, here is what I do in a playground:

```smalltalk
c := IceRepositoryCreator new url: 'git@github.com:melvinroest/Pharo-dev-Extensions.git'.
(c location: c defaultLocation) location exists ifTrue: [ c url: nil ].
c createRepository register.
c repository workingCopy packages do: [ :aPackage | aPackage load ]
```

← Back to results