Skip to content

Commit

Permalink
Add PharoBackwardCompatibility to P7
Browse files Browse the repository at this point in the history
  • Loading branch information
jecisc committed May 9, 2020
1 parent 4de5d95 commit 911063e
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/BaselineOfChanel/BaselineOfChanel.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ BaselineOfChanel >> baseline: spec [

spec
for: #(#'pharo7.x')
do: [ spec
do: [ self pharoBackwardCompatibility: spec.
spec
package: 'Chanel-Pharo7';
package: 'Chanel-Tests' with: [ spec requires: 'Chanel-Pharo7' ] ]
package: 'Chanel-Tests' with: [ spec requires: #('Chanel-Pharo7' 'PharoBackwardCompatibility') ] ]
]

{ #category : #dependencies }
Expand All @@ -40,6 +41,13 @@ BaselineOfChanel >> iterators: spec [
repository: 'github://juliendelplanque/Iterators:v1.x.x/src' ]
]

{ #category : #dependencies }
BaselineOfChanel >> pharoBackwardCompatibility: spec [
spec
baseline: 'PharoBackwardCompatibility'
with: [ spec repository: 'github://jecisc/PharoBackwardCompatibility:v1.x.x/src' ]
]

{ #category : #accessing }
BaselineOfChanel >> projectClass [
^ MetacelloCypressBaselineProject
Expand Down

0 comments on commit 911063e

Please sign in to comment.