Skip to content

Commit

Permalink
using microdown dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Ducasse committed Mar 21, 2024
1 parent 88d2dac commit 5841f87
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
27 changes: 14 additions & 13 deletions src/BaselineOfPillar/BaselineOfPillar.class.st
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Class {
#name : #BaselineOfPillar,
#superclass : #BaselineOf,
#category : #BaselineOfPillar
#name : 'BaselineOfPillar',
#superclass : 'BaselineOf',
#category : 'BaselineOfPillar',
#package : 'BaselineOfPillar'
}

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

<baseline>
Expand Down Expand Up @@ -101,19 +102,19 @@ BaselineOfPillar >> baseline: spec [
spec package: 'Pillar-Project' with: [ spec requires: 'OSSubprocess' ] ]
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfPillar >> chrysal: spec [

spec baseline: 'Chrysal' with: [ spec repository: 'github://Ducasse/Chrysal:v1.0.0/src' ]
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfPillar >> containersPropertyEnvironment: spec [

spec baseline: 'ContainersPropertyEnvironment' with: [ spec repository: 'github://Ducasse/Containers-PropertyEnvironment:v1.0.0' ]
]

{ #category : #baselines }
{ #category : 'baselines' }
BaselineOfPillar >> customProjectAttributes [
"Edit to return a collection of any custom attributes e.g. for conditional loading: Array with: #'Condition1' with: #'Condition2.
For more information see: http://code.google.com/p/metacello/wiki/CustomProjectAttrributes "
Expand All @@ -126,13 +127,13 @@ BaselineOfPillar >> customProjectAttributes [
^ attributes asArray
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfPillar >> microdown: spec [

spec baseline: 'Microdown' with: [ spec repository: 'github://pillar-markup/Microdown:v2.5.0/src' ]
spec baseline: 'Microdown' with: [ spec repository: 'github://pillar-markup/Microdown:dev/src' ]
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfPillar >> mustache: spec [

spec baseline: 'Mustache' with: [
Expand All @@ -141,19 +142,19 @@ BaselineOfPillar >> mustache: spec [
loads: #( 'Core' 'Tests' ) ]
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfPillar >> osSubProcess: spec [

spec baseline: 'OSSubprocess' with: [ spec repository: 'github://pharo-contributions/OSSubprocess:v2.0.0/repository' ]
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfPillar >> petitParser2: spec [

spec baseline: 'PetitParser2Core' with: [ spec repository: 'github://kursjan/petitparser2' ]
]

{ #category : #dependencies }
{ #category : 'dependencies' }
BaselineOfPillar >> processWrapper: spec [

spec configuration: 'ProcessWrapper' with: [
Expand Down
2 changes: 1 addition & 1 deletion src/BaselineOfPillar/package.st
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Package { #name : #BaselineOfPillar }
Package { #name : 'BaselineOfPillar' }

0 comments on commit 5841f87

Please sign in to comment.