Skip to content

Commit

Permalink
adds magritte:v3.8 as dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianconcept committed Mar 3, 2024
1 parent 0ecc6cd commit 9419ddf
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions BaselineOfRide/BaselineOfRide.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ BaselineOfRide >> loadTaskIt [
load
]

{ #category : #dependencies }
BaselineOfRide >> magritte: spec [

spec baseline: 'Magritte' with: [
spec
repository: 'github://magritte-metamodel/magritte:v3.8';
loads: #( Core ) ]
]

{ #category : #dependencies }
BaselineOfRide >> mapless: spec [

Expand Down Expand Up @@ -60,7 +69,8 @@ BaselineOfRide >> setUpDependencies: spec [
self mustache: spec.
self teapot: spec.
self singularizePluralize: spec.

self magritte: spec.

"In Ride-Pharo we install some general extensions
needed for Pharo, plus extensions for Zinc and Teapot."
spec package: 'Ride-Pharo'.
Expand All @@ -70,15 +80,13 @@ BaselineOfRide >> setUpDependencies: spec [
{ #category : #actions }
BaselineOfRide >> setUpPackages: spec [

spec package: 'Ride' with: [
spec package: 'Ride' with: [
spec requires:
#( 'Mustache' 'ZincHTTPComponents' 'Teapot' 'Ride-Pharo'
'Mapless' 'SingularizePluralize' 'STTemplate' ) ].
'Mapless' 'SingularizePluralize' 'STTemplate' 'Magritte' ) ].

spec package: 'Ride-Builder' with: [ spec requires: #( 'Ride' ) ].
spec
package: 'Ride-Tests'
with: [ spec requires: #( 'Ride' ) ].
spec package: 'Ride-Tests' with: [ spec requires: #( 'Ride' ) ].
spec package: 'Ride-Examples' with: [ spec requires: #( 'Ride' ) ].
spec package: 'Ride-Tests' with: [ spec requires: #( 'Ride' ) ]
]
Expand Down

0 comments on commit 9419ddf

Please sign in to comment.