diff --git a/src/ConfigurationOfPubiblio/ConfigurationOfPubiblio.class.st b/src/ConfigurationOfPubiblio/ConfigurationOfPubiblio.class.st index bd01819..80f04b3 100644 --- a/src/ConfigurationOfPubiblio/ConfigurationOfPubiblio.class.st +++ b/src/ConfigurationOfPubiblio/ConfigurationOfPubiblio.class.st @@ -1,3 +1,9 @@ +" +I am ConfigurationOfPubiblio a Metacello configuration of Pubiblio. + +Pubiblio is a tool for managing Zotero bibliographies. Is part of the +Grafoscopio Project. +" Class { #name : #ConfigurationOfPubiblio, #superclass : #Object, @@ -147,6 +153,32 @@ ConfigurationOfPubiblio >> baseline02: spec [ ] +{ #category : #baselines } +ConfigurationOfPubiblio >> baseline03: spec [ + + + spec for: #'common' do: [ + spec blessing: #baseline. + spec repository: 'http://smalltalkhub.com/mc/Offray/Grafoscopio/main/'; + package: 'Fossil'. + spec project: 'Citezen' with: [ + spec + className: #ConfigurationOfCitezen; + versionString: #'stable'; + repository: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo50/main/' ]. + spec project: 'NeoJSON' with: [ + spec + className: #ConfigurationOfNeoJSON; + versionString: #'stable'; + repository: 'http://mc.stfx.eu/Neo']. + spec package: #Pubiblio with: [ + spec requires: #('Citezen' 'NeoJSON' )]. + spec + group: 'core' with: #(#Pubiblio ); + group: 'default' with: #('core' )]. + +] + { #category : #accessing } ConfigurationOfPubiblio >> customProjectAttributes [ "Edit to return a collection of any custom attributes e.g. for conditional loading: Array with: #'Condition1' with: #'Condition2. @@ -179,7 +211,7 @@ ConfigurationOfPubiblio >> project [ ConfigurationOfPubiblio >> stable: spec [ - spec for: #'common' version: '0.2'. + spec for: #'common' version: '0.3'. ] @@ -210,3 +242,18 @@ ConfigurationOfPubiblio >> version02: spec [ spec package: #Pubiblio with: 'Pubiblio-OffrayLuna.2'. ]. ] + +{ #category : #versions } +ConfigurationOfPubiblio >> version03: spec [ + + + spec for: #'common' do: [ + spec blessing: #'stable'. + spec description: 'version 0.3'. + spec author: 'OffrayLuna'. + spec timestamp: '2017-07-03T18:06'. + spec + project: 'Citezen' with: #stable; + project: 'NeoJSON' with: #stable; + package: #Pubiblio with: 'Pubiblio-OffrayLuna.2']. +]