2024-07-23 23:58:14 +00:00
|
|
|
Class {
|
|
|
|
#name : 'BaselineOfInstagramPharo',
|
|
|
|
#superclass : 'BaselineOf',
|
|
|
|
#category : 'BaselineOfInstagramPharo',
|
|
|
|
#package : 'BaselineOfInstagramPharo'
|
|
|
|
}
|
|
|
|
|
|
|
|
{ #category : 'baselines' }
|
|
|
|
BaselineOfInstagramPharo >> baseline: spec [
|
|
|
|
|
|
|
|
<baseline>
|
2024-08-09 22:40:03 +00:00
|
|
|
spec
|
|
|
|
for: #common
|
|
|
|
do: [ spec
|
2024-08-09 22:48:22 +00:00
|
|
|
package: 'Instagram';
|
|
|
|
package: 'Instagram-Tests' with: [ spec requires: #('Instagram') ];
|
2024-08-09 22:40:03 +00:00
|
|
|
group: 'default' with: #('core' 'tests');
|
2024-08-09 22:48:22 +00:00
|
|
|
group: 'core' with: #('Instagram');
|
|
|
|
group: 'tests' with: #('Instagram-Tests') ].
|
2024-08-09 22:40:03 +00:00
|
|
|
spec
|
|
|
|
for: #pharo
|
|
|
|
do: [ spec
|
|
|
|
baseline: 'OSSubprocess' with: [ spec repository:
|
2024-08-09 23:12:54 +00:00
|
|
|
'github://pharo-contributions/OSSubprocess:master/repository' ];
|
|
|
|
package: 'Instagram' with: [ spec requires: #('OSSubprocess') ];
|
|
|
|
group: 'core' with: #('Instagram' 'OSSubprocess') ].
|
2024-07-23 23:58:14 +00:00
|
|
|
]
|