Skip to content

migchiel/ACRW

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ACRW

ArmorCode REST Api wrapper written in Pharo (Smalltalk)

Build status : workflow

Installation

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

Installation

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'

About

ArmorCode REST API wrapper written in Pharo (Smalltalk)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors