InstagramPharo/BaselineOfInstagramPharo/BaselineOfInstagramPharo.class.st

28 lines
801 B
Smalltalk

Class {
#name : 'BaselineOfInstagramPharo',
#superclass : 'BaselineOf',
#category : 'BaselineOfInstagramPharo',
#package : 'BaselineOfInstagramPharo'
}
{ #category : 'baselines' }
BaselineOfInstagramPharo >> baseline: spec [
<baseline>
spec
for: #common
do: [ spec
package: 'Instagram';
package: 'Instagram-Tests' with: [ spec requires: #('Instagram') ];
group: 'default' with: #('core' 'tests');
group: 'core' with: #('Instagram');
group: 'tests' with: #('Instagram-Tests') ].
spec
for: #pharo
do: [ spec
baseline: 'OSSubprocess' with: [ spec repository:
'github://pharo-contributions/OSSubprocess:master/repository' ];
package: 'Instagram' with: [ spec requires: #('OSSubprocess') ];
group: 'core' with: #('Instagram' 'OSSubprocess') ].
]