Declaring Citezen as a prerrequisite.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-02-23 18:36:15 +00:00 committed by SantiagoBragagnolo
parent bdea7b7537
commit 2cc34e0ff3
1 changed files with 36 additions and 2 deletions

View File

@ -127,6 +127,26 @@ ConfigurationOfZotero >> baseline01: spec [
]
{ #category : #baselines }
ConfigurationOfZotero >> baseline02: spec [
<version: '0.2-baseline'>
spec for: #'common' do: [
spec blessing: #'baseline'.
spec repository: 'http://smalltalkhub.com/mc/Offray/Grafoscopio/main/'.
spec project: 'Citezen' with: [
spec
className: #ConfigurationOfCitezen;
versionString: #'stable';
repository: 'http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo50/main/' ].
spec package: #Zotero with: [
spec requires: #('Citezen' ). ].
spec
group: 'core' with: #(#Zotero );
group: 'default' with: #('core' ). ].
]
{ #category : #accessing }
ConfigurationOfZotero >> customProjectAttributes [
"Edit to return a collection of any custom attributes e.g. for conditional loading: Array with: #'Condition1' with: #'Condition2.
@ -139,7 +159,7 @@ ConfigurationOfZotero >> customProjectAttributes [
ConfigurationOfZotero >> development: spec [
<symbolicVersion: #'development'>
spec for: #'common' version: '0.1-baseline'.
spec for: #'common' version: '0.2-baseline'.
]
@ -159,7 +179,7 @@ ConfigurationOfZotero >> project [
ConfigurationOfZotero >> stable: spec [
<symbolicVersion: #'stable'>
spec for: #'common' version: '0.1'.
spec for: #'common' version: '0.2'.
]
@ -176,3 +196,17 @@ ConfigurationOfZotero >> version01: spec [
spec package: #Zotero with: 'Zotero-OffrayLuna.5'. ].
]
{ #category : #versions }
ConfigurationOfZotero >> version02: spec [
<version: '0.2' imports: #('0.2-baseline' )>
spec for: #'common' do: [
spec blessing: #'stable'.
spec description: 'version 0.2'.
spec author: 'OffrayLuna'.
spec timestamp: '2/23/2017 18:27'.
spec project: 'Citezen' with: #stable.
spec package: #Zotero with: 'Zotero-OffrayLuna.5'. ].
]