Skip to content

Commit

Permalink
Using main version of method proxies instead of a detached head one
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanmontt committed Sep 18, 2023
1 parent 2fa2875 commit 8eded28
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
I am a baseline
"
Class {
#name : #BaselineOfIllimaniAllocationProfiler,
#superclass : #BaselineOf,
#category : #BaselineOfIllimaniAllocationProfiler
#name : 'BaselineOfIllimaniAllocationProfiler',
#superclass : 'BaselineOf',
#category : 'BaselineOfIllimaniAllocationProfiler',
#package : 'BaselineOfIllimaniAllocationProfiler'
}

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfIllimaniAllocationProfiler >> baseline: spec [

<baseline>
Expand All @@ -19,18 +20,18 @@ BaselineOfIllimaniAllocationProfiler >> baseline: spec [

"External dependencies"
spec baseline: 'MethodProxies'
with: [ spec repository: 'github://pharo-contributions/MethodProxies:a3204024eba7fce4f92db7f521425d3d0d869afc/src' ].
with: [ spec repository: 'github://pharo-contributions/MethodProxies'
"spec repository: 'github://pharo-contributions/MethodProxies:a3204024eba7fce4f92db7f521425d3d0d869afc/src'" ].
"Not needed anymore. Leaving it in case it will be needed in the future"
"spec baseline: 'SpaceAndTime'
with: [ spec repository: 'github://jordanmontt/spaceAndTime/src' ]."

"Loading Roassal for Pharo 10"
spec
for: #'pharo10.x' do: [
spec
baseline: 'Roassal3'
with: [ spec repository: 'github://ObjectProfile/Roassal3:v1.01/src' ].
spec package: 'IllimaniAllocationProfiler-UI' with: [ spec requires: #('Roassal3') ] ].
spec for: #'pharo10.x' do: [
spec
baseline: 'Roassal3'
with: [ spec repository: 'github://ObjectProfile/Roassal3:v1.01/src' ].
spec package: 'IllimaniAllocationProfiler-UI' with: [ spec requires: #('Roassal3') ] ].

"Groups"
spec group: 'default' with: #( 'core' 'tests' ).
Expand Down
2 changes: 1 addition & 1 deletion src/BaselineOfIllimaniAllocationProfiler/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : #BaselineOfIllimaniAllocationProfiler }
Package { #name : 'BaselineOfIllimaniAllocationProfiler' }

0 comments on commit 8eded28

Please sign in to comment.