Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 650 Bytes

contributing.md

File metadata and controls

42 lines (29 loc) · 650 Bytes

Development

Gloac uses 3 muskeeters as developer and ci interface to interact with the code

Arguments to make can be passed either in environment variable format, or as an argument format, e.g.

make build GEM_VERSION=123
# is same is
GEM_VERSION=123 make build

Build gem

make build

Running tests

make test

Build and install gem locally

make clean build _local_install

Publish new version of the gem

make publish GEM_VERSION=0.0.1 

Build docker image

make buildDocker GEM_VERSION=0.0.1 DOCKER_TAG=0.0.1-alpine