ArmorCode REST Api wrapper written in Pharo (Smalltalk)
The ArmorCode SAAS platform has a very complete REST API, the details of which can be found here: https://app.armorcode.com/api-docs/swagger-ui/index.html#/
ACRW is implemented in Pharo (https://pharo.org/)
You will need to install Pharo first using this zero conf script for linux and OSX : 'curl -L https://get.pharo.org/64/ | bash'. or 'wget -O- https://get.pharo.org/64 | bash' depending on curl or wget being installed.
The Pharo installer for all the supported OS's can be found here: https://pharo.org/download
You can load the ACRW code into Pharo using Metacello. The script below will load everything, including the tests and script examples.
Metacello new
repository: 'github://migchiel/ACRW/src';
baseline: 'ACRW';
load.If you want to load the minimal code base you can use this script.
Metacello new
repository: 'github://migchiel/ACRW/src';
baseline: 'ACRW';
load: 'Core'If you want to load the minimal code base and the example scripts you can use this script.
Metacello new
repository: 'github://migchiel/ACRW/src';
baseline: 'ACRW';
load: 'Scripting'