Syntactic sugar to work in Pharo's Iceberg with external repositories beyond GitLab, GitHub and Bitbucket
Go to file
Offray Vladimir Luna Cárdenas a5364314ab Actualizar 'README.md' 2021-07-24 19:23:36 -05:00
src Defining baselines. 2021-07-24 09:41:46 -05:00
.project Starting sync. 2021-07-24 09:35:29 -05:00
README.md Actualizar 'README.md' 2021-07-24 19:23:36 -05:00

README.md

ExoRepo

ExoRepo provides syntactic sugar for Pharo's Iceberg to support repositories beyond GitLab, GitHub and Bitbucket.

To install this from Gitea, run from a playground:

  location := FileLocator localDirectory / 'iceberg' / 'Offray' / 'ExoRepo'.
  (IceRepositoryCreator new 
      location: location;
      remote: (IceGitRemote url: 'https://code.tupale.co/Offray/ExoRepo.git');
      createRepository)
  register.

  Metacello new
      repository: 'gitlocal://', location fullName;
      baseline: 'ExoRepo';
      load