From 2cc34e0ff386317f2842ab7065cc582e817b78c1 Mon Sep 17 00:00:00 2001 From: OffrayLuna Date: Thu, 23 Feb 2017 18:36:15 +0000 Subject: [PATCH] Declaring Citezen as a prerrequisite. --- .../ConfigurationOfZotero.class.st | 38 ++++++++++++++++++- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/src/ConfigurationOfZotero/ConfigurationOfZotero.class.st b/src/ConfigurationOfZotero/ConfigurationOfZotero.class.st index 7911d3f..4ff4c3a 100644 --- a/src/ConfigurationOfZotero/ConfigurationOfZotero.class.st +++ b/src/ConfigurationOfZotero/ConfigurationOfZotero.class.st @@ -127,6 +127,26 @@ ConfigurationOfZotero >> baseline01: spec [ ] +{ #category : #baselines } +ConfigurationOfZotero >> baseline02: spec [ + + + 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 [ - spec for: #'common' version: '0.1-baseline'. + spec for: #'common' version: '0.2-baseline'. ] @@ -159,7 +179,7 @@ ConfigurationOfZotero >> project [ ConfigurationOfZotero >> stable: spec [ - 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 [ + + + 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'. ]. + +]