First versioner powered installable package. I'll be looking if I understood versioner and packaging well and this will be the base for detecting errors.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2016-02-22 17:45:53 +00:00
parent c94c0b8f70
commit cd138d00af

View File

@ -177,3 +177,25 @@ ConfigurationOfGrafoscopio >> project [
project loadType: #linear. "change to #atomic if desired"
project ]
]
{ #category : #'symbolic versions' }
ConfigurationOfGrafoscopio >> stable: spec [
<symbolicVersion: #'stable'>
spec for: #'common' version: '0.1'.
]
{ #category : #versions }
ConfigurationOfGrafoscopio >> version01: spec [
<version: '0.1' imports: #('0.1-baseline' )>
spec for: #'common' do: [
spec blessing: #'stable'.
spec description: 'version 0.1'.
spec author: 'OffrayLuna'.
spec timestamp: '2/22/2016 17:43'.
spec project: 'Ston' with: '0.14'.
spec package: #Grafoscopio with: 'Grafoscopio-OffrayLuna.146'. ].
]