From 862460091c1749b096d40d0742acbcdb7f2e437f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Offray=20Vladimir=20Luna=20C=C3=A1rdenas?= Date: Tue, 27 Jul 2021 19:13:26 -0500 Subject: [PATCH] Install using ExoRepo. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 876eb51..882064d 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,10 @@ Social Networks data analysis utilities and tools, starting with Twitter. -To load this package open a Playground in GToolkit and execute: +First install [ExoRepo](https://code.tupale.co/Offray/ExoRepo) and then from a _playground_ in [GToolkit](https://gtoolkit.com/) 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 | repoName := 'Datanalitica'. "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. + ExoRepo new + repository: 'https://code.tupale.co/Offray/Datanalitica'; + load. ```