From c80a60279327ebf15ef602c090c4bd04667fed18 Mon Sep 17 00:00:00 2001 From: CyrilFerlicot Date: Thu, 15 Nov 2018 16:56:23 +0100 Subject: [PATCH] Doc --- .gitignore | 2 ++ README.md | 32 ++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6b357f0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +**/.DS_Store +.DS_STORE \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..1dc4a5e --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# KGBTestResources + +Temporary fork of Moose's KGBTestResources + +## Description + +Test resources for the Famix project. + +## Installation + +To install KGBTestResources on your Pharo image you can just execute the following script: + +```Smalltalk + Metacello new + githubUser: 'jecisc' project: 'KGBTestResources' commitish: 'v1.x.x' path: 'src'; + baseline: 'KGBTestResources'; + load +``` + +To add KGBTestResources to your baseline just add this: + +```Smalltalk + spec + baseline: 'KGBTestResources' + with: [ spec repository: 'github://jecisc/KGBTestResources:v1.x.x/src' ] +``` + +Note that you can replace the #v1.x.x by a branch as #master or #development or a tag as #v1.0.0, #v1.? or #v1.2.x. + +## Official repositories + +The official version is stored at: https://github.com/moosetechnology/Moose \ No newline at end of file