Hi Question1: I would like to develop a new library in tonel format. Can I load and write in tonel from Pharo 60? Question2: I have chrysal in tonel and it uses property environment in filetree (I should convert but I'm scared). Is my baseline correct? Because it does not load in Pharo 60 (not tested yet in Pharo 70). baseline: spec <baseline> spec baseline: 'Containers-PropertyEnvironment' with: [ spec repository: 'github://Ducasse/Containers-PropertyEnvironment' ]. spec for: #pharo do: [ spec package: 'Containers-PropertyEnvironment'; package: 'Chrysal' with: [ spec requires: #('Containers-PropertyEnvironment') ] ]
On 25 Feb 2018, at 08:31, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Hi
Question1: I would like to develop a new library in tonel format. Can I load and write in tonel from Pharo 60?
Pharo 6.1, yes
Question2: I have chrysal in tonel and it uses property environment in filetree (I should convert but I'm scared). Is my baseline correct? Because it does not load in Pharo 60 (not tested yet in Pharo 70).
baseline: spec <baseline> spec baseline: 'Containers-PropertyEnvironment' with: [ spec repository: 'github://Ducasse/Containers-PropertyEnvironment' ]. spec for: #pharo do: [ spec package: 'Containers-PropertyEnvironment'; package: 'Chrysal' with: [ spec requires: #('Containers-PropertyEnvironment') ] ]
No, is not ok :) baseline: spec <baseline> spec for: #pharo do: spec baseline: âContainersPropertyEnvironment' with: [ spec repository: 'github://Ducasse/Containers-PropertyEnvironmentâ ]. spec package: 'Chrysalâ with: [ spec requires: #('ContainersPropertyEnvironment') ] ] 1. baseline is the name of the class BaselineOfEtc 2. dependency is against the name of the baseline, in this case âContainersPropertyEnvironmentâ Esteban
tx esteban! On Sun, Feb 25, 2018 at 10:25 AM, Esteban Lorenzano <estebanlm@gmail.com> wrote:
On 25 Feb 2018, at 08:31, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Hi
Question1: I would like to develop a new library in tonel format. Can I load and write in tonel from Pharo 60?
Pharo 6.1, yes
Question2: I have chrysal in tonel and it uses property environment in filetree (I should convert but I'm scared). Is my baseline correct? Because it does not load in Pharo 60 (not tested yet in Pharo 70).
baseline: spec <baseline> spec baseline: 'Containers-PropertyEnvironment' with: [ spec repository: 'github://Ducasse/Containers-PropertyEnvironment' ]. spec for: #pharo do: [ spec package: 'Containers-PropertyEnvironment'; package: 'Chrysal' with: [ spec requires: #('Containers-PropertyEnvironment') ] ]
No, is not ok :)
baseline: spec <baseline>
spec for: #pharo do: spec baseline: âContainersPropertyEnvironment' with: [ spec repository: 'github://Ducasse/Containers-PropertyEnvironmentâ ]. spec package: 'Chrysalâ with: [ spec requires: #('ContainersPropertyEnvironment') ] ]
1. baseline is the name of the class BaselineOfEtc 2. dependency is against the name of the baseline, in this case âContainersPropertyEnvironmentâ
Esteban
participants (2)
-
Esteban Lorenzano -
Stephane Ducasse