You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
see conversation:
http://forum.world.st/Releasing-a-version-td4165256.html
specifically:
http://forum.world.st/Releasing-a-version-tp4165256p4165623.html
Original issue reported on code.google.com by [email protected] on 6 Dec 2011 at 6:57
The text was updated successfully, but these errors were encountered:
From Issue 158, the method MetacelloTooBox
class>>modifyVersion:section:for:repository:requiredProjects:packages:dependenci
es:includes:files:repositories:preLoadDoIts:postLoadDoIts:supplyingAnswers:group
s: can also be used to add a repository.
In MetacelloTooBoxAPITestCase>>testComplexModifyBaseline, the following was
used to dd a package and dependency to version '1.1-baseline':
MetacelloToolBox
modifyVersion: '1.1-baseline'
section: #'common'
for: self configurationName asString
repository: nil
requiredProjects: #()
packages: #('GoferFoo')
dependencies: {('GeauxFaux' -> #('GoferFoo'))}
includes: #()
files: #()
repositories: #()
preLoadDoIts: #()
postLoadDoIts: #()
supplyingAnswers: #()
groups: #().
To add a repository for a particular package (say GoferFoo) you would do the
following:
MetacelloToolBox
modifyVersion: '1.1-baseline'
section: #'common'
for: self configurationName asString
repository: nil
requiredProjects: #()
packages: #(')
dependencies: #()
includes: #()
files: #()
repositories: {('GoferFoo' -> #('http://www.squeaksource.com/CommandShell'))}
preLoadDoIts: #()
postLoadDoIts: #()
supplyingAnswers: #()
groups: #().
Original issue reported on code.google.com by
[email protected]
on 6 Dec 2011 at 6:57The text was updated successfully, but these errors were encountered: