Resolving versions to make it compatible with ConfigurationOfGrafoscopio.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-07-03 19:09:51 +00:00 committed by SantiagoBragagnolo
parent 6eca14a57b
commit bf7ad7dbe0
1 changed files with 48 additions and 1 deletions

View File

@ -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 [
<version: '0.3-baseline'>
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 [
<symbolicVersion: #'stable'>
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 [
<version: '0.3' imports: #('0.3-baseline' )>
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'].
]