我想自动完成一些蒙蒂塞洛任务。为此,我必须首先选择某些Monticello包,然后我希望能够:
我看到在“Deep into Pharo”的即将到来的Monticello chapter中有一段关于“以编程方式添加存储库”的小段落。
可以Gofer用于自动完成这样的任务吗?
答案 0 :(得分:1)
Gofer应该用于以编程方式使用Monticello UI手动执行操作。如果您发现缺少的东西,请在邮件列表上讨论。
答案 1 :(得分:0)
至少我找到了第三个问题的答案:
如何以编程方式添加用户和密码信息 (Smalltalkhub)存储库。
(MCRepositoryGroup default repositories
select: [:each | (each isKindOf: MCHttpRepository)
and: [each locationWithTrailingSlash includesSubstring: 'http://smalltalkhub.com/mc/MyName/']])
do: [:each | each user: 'MyName'; password: 'MyPassword'].