26 lines
676 B
Smalltalk
26 lines
676 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' ] ]
|
|
]
|