You can load okr-api evaluating:
Metacello new
baseline: 'OKRAPI';
repository: 'github://Mercap/okr-api:release-candidate/source';
load.Change
release-candidateto some released version if you want a pinned version
In order to include okr-api as part of your project, you should reference the package in your product baseline:
setUpDependencies: spec
spec
baseline: 'OKRAPI'
with: [ spec
repository: 'github://Mercap/okr-api:v{XX}/source';
loads: #('Deployment') ];
import: 'okrapi'.Replace
{XX}with the version you want to depend on
baseline: spec
<baseline>
spec
for: #common
do: [ self setUpDependencies: spec.
spec package: 'My-Package' with: [ spec requires: #('OKRAPI') ] ]Deploymentwill load all the packages needed in a deployed applicationTestswill load the test casesDependent-SUnit-Extensionswill load the extensions to the SUnit frameworkToolswill load the extensions to the SUnit framework and development tools (inspector and spotter extensions)CIis the group loaded in the continuous integration setupDevelopmentwill load all the needed packages to develop and contribute to the project