Re: [Pharo-users] depending on a group of a BaselineOf

2018-02-27 Thread Pavel Krivanek
in BaselineOfBasicTools we use something like. spec baseline: 'SUnit' with: [ spec repository: repository. spec loads: #('UI' 'Help')]. -- Pavel 2018-02-26 23:30 GMT+01:00 Peter Uhnák : > Hi, > > I'm trying to define a dependency on a group of BaselineOf. > > specifically #core of github

Re: [Pharo-users] depending on a group of a BaselineOf

2018-02-27 Thread Jupiter Jones
(I hope this isn’t posted twice - I accidentally sent it from an address that wasn’t subscribed so this is a repost - apologies) Hi Peter, I’ve never had to use the provides: method even with fairly complex Baselines. This is an example of the kind of thing I’ve been using: baseline: spec

Re: [Pharo-users] Exporting Pillar docs (Pillar7)

2018-02-27 Thread Arturo Zambrano
Thanks for your help. I will use markdown as a preview, so th PR*Writer write:document is OK. For the last phase I plan to use latex to generate a pdf following certain presentation rules. I wonder if it is possible to use pillar 7 templates programmatically. Is there some example I can follow?

[Pharo-users] Adding text files to a commit

2018-02-27 Thread Andrew P. Black
I have some text files that I would like to include in every commit (if they have changed since the prior commit). What is the right way to make this happen automatically? Or else I forget to add them ... Adding the files to a _separate_ commit breaks Iceberg, because it decides that the imag

[Pharo-users] Initializing Iceberg's repository list

2018-02-27 Thread Andrew P . Black
I believe that there is a way one can add one or more repositories to Iceberg’s list of local repositories, so that when one opens a new image (new = just dowloaded using the Pharo launcher), the repository is already present in Iceberg’s list. Stéph showed me how to do this once, but I’ve los

Re: [Pharo-users] how to load compiled code in the image and to change methods already on the stack?

2018-02-27 Thread Andrew P . Black
> On 26 Feb 2018, at 22:59 , Steven Costiou > wrote: > > Hi Pablo, > > thanks :) I will try Hermes. > > Basic scenario is adding/removing metalinks to a lot of a methods in an iot > app: > > 1- If the add/remove occurs a lot of time, then there is a slowdown d

Re: [Pharo-users] Adding text files to a commit

2018-02-27 Thread Peter Uhnák
I'm using the following | repo | repo := IceRepository registry detect: [ :each | each name = 'my-repo' ]. repo addFilesToIndex: {'CHANGELOG.md'}. so then the iceberg commit will also include the (external) file change Peter On Tue, Feb 27, 2018 at 11:06 PM, Andrew P. Black wrote: > I have so

Re: [Pharo-users] Initializing Iceberg's repository list

2018-02-27 Thread Peter Uhnák
I think you are looking for this thread http://forum.world.st/Adding-an-Iceberg-repository-at-startup-td5016693.html ? Peter On Tue, Feb 27, 2018 at 11:07 PM, Andrew P. Black wrote: > I believe that there is a way one can add one or more repositories to > Iceberg’s list of local repositories, s

Re: [Pharo-users] Adding text files to a commit

2018-02-27 Thread Andrew P. Black
> On 28 Feb 2018, at 12:32 , Peter Uhnák wrote: > > I'm using the following > > | repo | > repo := IceRepository registry detect: [ :each | each name = 'my-repo' ]. > repo addFilesToIndex: {'CHANGELOG.md'}. > > so then the iceberg commit will also include the (external) file change > Thank y