Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 546 Bytes

DEVELOPMENT_ENVIRONMENT_GUIDE.md

File metadata and controls

26 lines (18 loc) · 546 Bytes

Development environment guide

Preparing

Clone healthcheck-endpoint repository:

git clone https://github.com/obstools/healthcheck-endpoint.git
cd  ruby-gem

Configure latest Ruby environment:

echo 'ruby-3.2.0' > .ruby-version
cp .circleci/gemspec_latest healthcheck_endpoint.gemspec

Commiting

Commit your changes excluding .ruby-version, healthcheck_endpoint.gemspec

git add . ':!.ruby-version' ':!healthcheck_endpoint.gemspec'
git commit -m 'Your new awesome healthcheck_endpoint feature'