You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 weeks ago | |
---|---|---|
src | 3 weeks ago | |
.project | 2 years ago | |
README.md | 4 months ago |
README.md
ExoRepo
ExoRepo provides syntactic sugar for Pharo's Iceberg to support repositories beyond GitLab, GitHub and Bitbucket.
Installation
from Gitea
Run from a playground:
location := FileLocator localDirectory / 'iceberg' / 'Offray' / 'ExoRepo'.
(IceRepositoryCreator new
location: location;
remote: (IceGitRemote url: 'https://code.sustrato.red/Offray/ExoRepo.git');
createRepository)
register.
Metacello new
repository: 'gitlocal://', location fullName;
baseline: 'ExoRepo';
load
from GitHub
Run from a playground:
Metacello new
repository: 'github://offray/ExoRepo/';
baseline: 'ExoRepo';
load.
Usage
To install the repository https://code.tupale.co/Offray/TiddlyWikiPharo run:
ExoRepo new
repository: 'https://code.tupale.co/Offray/TiddlyWikiPharo';
load.