Skip to content

Commit

Permalink
added Phausto to baseline
Browse files Browse the repository at this point in the history
  • Loading branch information
Enzo-Demeulenaere committed Jul 2, 2024
1 parent 3b3fc06 commit 5d9b868
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 14 deletions.
30 changes: 17 additions & 13 deletions BaselineOfCoypuIDE/BaselineOfCoypuIDE.class.st
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
Class {
#name : 'BaselineOfCoypuIDE',
#superclass : 'BaselineOf',
#category : 'BaselineOfCoypuIDE',
#package : 'BaselineOfCoypuIDE'
#name : #BaselineOfCoypuIDE,
#superclass : #BaselineOf,
#category : #BaselineOfCoypuIDE
}

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

<baseline>
spec for: #common do: [
spec baseline: 'Toplo' with: [ spec repository: 'github://pharo-graphics/Toplo:master/src' ].
spec for: #common do: [
spec
baseline: 'Toplo'
with: [ spec repository: 'github://pharo-graphics/Toplo:master/src' ].
spec
baseline: 'Phausto'
with: [ spec repository: 'github://lucretiomsp/Phausto/src' ].

spec
package: 'CoypuIDE' with: [spec requires: 'Toplo'];
package: 'Mooflod' with: [spec requires: 'Toplo'];
package: 'ICIcons' with: [spec requires: 'Toplo'].
spec
group: 'core' with: #('CoypuIDE' 'Mooflod' 'ICIcons');
group: 'default' with: #('core') ]
package: 'CoypuIDE' with: [ spec requires: 'Toplo' ];
package: 'Mooflod' with: [ spec requires: 'Toplo' ];
package: 'ICIcons' with: [ spec requires: 'Toplo' ].
spec
group: 'core' with: #( 'CoypuIDE' 'Mooflod' 'ICIcons' );
group: 'default' with: #( 'core' ) ]
]
2 changes: 1 addition & 1 deletion BaselineOfCoypuIDE/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : 'BaselineOfCoypuIDE' }
Package { #name : #BaselineOfCoypuIDE }

0 comments on commit 5d9b868

Please sign in to comment.