Skip to content

Commit

Permalink
upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanecek committed Jul 22, 2024
1 parent d7406e1 commit af577b1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
25 changes: 13 additions & 12 deletions source/BaselineOfAnsible/BaselineOfAnsible.class.st
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Class {
#name : #BaselineOfAnsible,
#superclass : #BaselineOf,
#category : #BaselineOfAnsible
#name : 'BaselineOfAnsible',
#superclass : 'BaselineOf',
#category : 'BaselineOfAnsible',
#package : 'BaselineOfAnsible'
}

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfAnsible >> baseline: spec [

<baseline>
Expand All @@ -21,13 +22,13 @@ BaselineOfAnsible >> baseline: spec [
]
]

{ #category : #accessing }
{ #category : 'accessing' }
BaselineOfAnsible >> projectClass [

^ MetacelloCypressBaselineProject
]

{ #category : #initialization }
{ #category : 'initialization' }
BaselineOfAnsible >> setUpDependencies: spec [

spec
Expand All @@ -36,19 +37,19 @@ BaselineOfAnsible >> setUpDependencies: spec [
project: 'XMLParser-Core' copyFrom: 'XMLParser' with: [ spec loads: #( 'Core' ) ].

spec
baseline: 'Launchpad' with: [ spec repository: 'github://ba-st/Launchpad:v4' ];
baseline: 'Launchpad' with: [ spec repository: 'github://ba-st/Launchpad:v6' ];
project: 'Launchpad-Deployment' copyFrom: 'Launchpad' with: [ spec loads: 'Deployment' ].

spec
baseline: 'Buoy' with: [ spec repository: 'github://ba-st/Buoy:v6' ];
baseline: 'Buoy' with: [ spec repository: 'github://ba-st/Buoy:v8' ];
project: 'Buoy-SUnit' copyFrom: 'Buoy' with: [ spec loads: 'Dependent-SUnit-Extensions' ].

spec
baseline: 'Hyperspace' with: [ spec repository: 'github://ba-st/Hyperspace:v4' ];
baseline: 'Hyperspace' with: [ spec repository: 'github://ba-st/Hyperspace:v6' ];
project: 'Hyperspace-Deployment' copyFrom: 'Hyperspace' with: [ spec loads: 'Deployment' ]
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfAnsible >> setUpDeploymentPackages: spec [

spec
Expand All @@ -69,7 +70,7 @@ BaselineOfAnsible >> setUpDeploymentPackages: spec [
group: 'RabbitMQ' with: 'Ansible-RabbitMQ'
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfAnsible >> setUpTestPackages: spec [

spec
Expand All @@ -83,7 +84,7 @@ BaselineOfAnsible >> setUpTestPackages: spec [
group: 'Tests' with: 'Ansible-RabbitMQ-Tests'
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfAnsible >> setUpToolsPackages: spec [

spec
Expand Down
2 changes: 1 addition & 1 deletion source/BaselineOfAnsible/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : #BaselineOfAnsible }
Package { #name : 'BaselineOfAnsible' }

0 comments on commit af577b1

Please sign in to comment.