Skip to content

Commit

Permalink
Merge pull request #70 from ba-st/add_missing_package_dependency
Browse files Browse the repository at this point in the history
Add missing package dependency
  • Loading branch information
gcotelli authored Nov 4, 2021
2 parents d4b7a91 + f27178c commit c088d73
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions source/BaselineOfBuoy/BaselineOfBuoy.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Baseline of Buoy
Class {
#name : #BaselineOfBuoy,
#superclass : #BaselineOf,
#category : 'BaselineOfBuoy'
#category : #BaselineOfBuoy
}

{ #category : #baselines }
Expand Down Expand Up @@ -45,17 +45,19 @@ BaselineOfBuoy >> baselineAssertions: spec [
BaselineOfBuoy >> baselineCollections: spec [

spec
package: 'Buoy-Collections' with: [ spec requires: #('Buoy-Assertions' 'Buoy-Dynamic-Binding') ];
package: 'Buoy-Collections'
with: [ spec requires: #( 'Buoy-Assertions' 'Buoy-Dynamic-Binding' 'Buoy-Comparison' ) ];
group: 'Deployment' with: 'Buoy-Collections';
package: 'Buoy-Collections-Tests' with: [ spec requires: #('Buoy-Collections' 'Dependent-SUnit-Extensions') ];
package: 'Buoy-Collections-Tests'
with: [ spec requires: #( 'Buoy-Collections' 'Dependent-SUnit-Extensions' ) ];
group: 'Tests' with: 'Buoy-Collections-Tests'
]

{ #category : #baselines }
BaselineOfBuoy >> baselineComparison: spec [

spec
package: 'Buoy-Comparison' with: [ spec requires: #('Buoy-Assertions' 'Buoy-Collections') ];
package: 'Buoy-Comparison' with: [ spec requires: 'Buoy-Assertions' ];
group: 'Deployment' with: 'Buoy-Comparison';
package: 'Buoy-Comparison-Tests'
with: [ spec requires: #('Buoy-Comparison' 'Dependent-SUnit-Extensions') ];
Expand Down

0 comments on commit c088d73

Please sign in to comment.