29 lines
845 B
Smalltalk
29 lines
845 B
Smalltalk
Class {
|
|
#name : #BaselineOfInstagramPharo,
|
|
#superclass : #BaselineOf,
|
|
#category : #BaselineOfInstagramPharo
|
|
}
|
|
|
|
{ #category : #baselines }
|
|
BaselineOfInstagramPharo >> baseline: spec [
|
|
|
|
<baseline>
|
|
spec
|
|
for: #common
|
|
do: [ spec
|
|
package: 'Instagram';
|
|
package: 'ExtEnvi';
|
|
package: 'Instagram' with: [ spec requires: #('ExtEnvi') ];
|
|
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') ].
|
|
]
|