From 007ff7369a6aa5fd4cb433f227b2f93301bff141 Mon Sep 17 00:00:00 2001 From: Denis Kudriashov Date: Sat, 15 Jul 2017 14:33:18 +0200 Subject: [PATCH] fix dependency --- .../BaselineOfMocketry.class/instance/baseline..st | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/BaselineOfMocketry.package/BaselineOfMocketry.class/instance/baseline..st b/BaselineOfMocketry.package/BaselineOfMocketry.class/instance/baseline..st index 317a71c..c5af642 100644 --- a/BaselineOfMocketry.package/BaselineOfMocketry.class/instance/baseline..st +++ b/BaselineOfMocketry.package/BaselineOfMocketry.class/instance/baseline..st @@ -6,11 +6,12 @@ baseline: spec spec baseline: 'StateSpecs' with: [ spec repository: 'github://dionisiydk/StateSpecs:v2.4.x']; - baseline: 'GhostCore' with: [ + baseline: 'Ghost' with: [ spec - repository: 'github://dionisiydk/Ghost:v3.0.x'; - loads: #('ObjectGhost' 'GTSupport' 'StateSpecsSupport' 'ObjectMutation')]; - project: 'GhostTests' copyFrom: 'GhostCore' with: [ + repository: 'github://dionisiydk/Ghost:v3.0.x']; + project: 'GhostCore' copyFrom: 'Ghost' with: [ + spec loads: #('ObjectGhost' 'GTSupport' 'StateSpecsSupport' 'ObjectMutation')]; + project: 'GhostTests' copyFrom: 'Ghost' with: [ spec loads: #('ObjectGhostTests' 'StateSpecsSupport' 'ClassGhostTests' 'ObjectMutationTests')]; package: 'Mocketry-Specs' with: [ spec requires: #('StateSpecs')]; package: 'Mocketry-Domain' with: [ spec requires: #('Mocketry-Specs' 'GhostCore')];