From 17cd2882ba3fa81e34ead9b654c8a5a9a6b7151a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Offray=20Vladimir=20Luna=20C=C3=A1rdenas?= Date: Sun, 18 Jul 2021 14:48:26 -0500 Subject: [PATCH] Actualizar 'README.md' Fixing instructions. --- README.md | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c3ed2ac..ac7dd8b 100644 --- a/README.md +++ b/README.md @@ -21,5 +21,29 @@ and how easy is to use them. To load this package open a Playground in GToolkit and execute: ```smalltalk - "I load the configuration of this package using a external Gitea repository." "While more Git independient providers are implemented in Monticello, I will use Iceberg to download the repository and load it from a local directory" | location localRepo repoName packageName | "Sometimes repoName and packageName are different, following Pharo's conventions. For example the repoName can be MyPackage, while packageName can be My-Package" repoName := 'LepiterPlugins'. packageName := 'LepiterPlugins'. "Local and remote repo definition" location := FileLocator localDirectory / 'iceberg' / 'Offray' / repoName. location exists ifFalse: [ (IceRepositoryCreator new location: location; remote: (IceGitRemote url: 'https://code.tupale.co/Offray/', repoName, '.git'); createRepository) register ]. "Package loading" localRepo := 'gitlocal://', location fullName. Metacello new repository: localRepo; baseline: repoName; load. spec baseline: repoName with: [ spec repository: localRepo ]. spec package: packageName with: [ spec repository: localRepo ]. + "I load the configuration of this package using a external Gitea repository." + "While more Git independient providers are implemented in Monticello, I will use Iceberg + to download the repository and load it from a local directory" + | location localRepo repoName packageName | + + "Sometimes repoName and packageName are different, following Pharo's conventions. + For example the repoName can be MyPackage, while packageName can be My-Package" + repoName := 'LepiterPlugins'. + packageName := 'LepiterPlugins'. + + "Local and remote repo definition" + location := FileLocator localDirectory / 'iceberg' / 'Offray' / repoName. + location exists ifFalse: [ + (IceRepositoryCreator new + location: location; + remote: (IceGitRemote url: 'https://code.tupale.co/Offray/', repoName, '.git'); + createRepository) + register + ]. + "Package loading" + localRepo := 'gitlocal://', location fullName. + Metacello new + repository: localRepo; + baseline: repoName; + load. ```