Re: [Pharo-users] STON UUID in the key

2016-04-02 Thread Peter Uhnák
Perfect! Thanks On Sat, Apr 2, 2016 at 11:21 PM, Henrik Nergaard wrote: > You need to set “allowComplexMapKeys” in StonReader to true for it to > handle objects as keys. > > > > | reader | > > > > reader := STONReader new. > > reader allowComplexMapKeys: true. > > reader on: (STON toStringPrett

Re: [Pharo-users] STON UUID in the key

2016-04-02 Thread Henrik Nergaard
You need to set “allowComplexMapKeys” in StonReader to true for it to handle objects as keys. | reader | reader := STONReader new. reader allowComplexMapKeys: true. reader on: (STON toStringPretty: (Object new-> Morph new -> nil)) readStream. reader next. Best regards, Henrik From: Pharo-use

[Pharo-users] STON UUID in the key

2016-04-02 Thread Peter Uhnák
Why does this fail? STON fromString: ( STON toStringPretty: (Dictionary with: UUID new -> nil) ) I would assume that if it can be serialized, then it should be also parsable. Having scalars for

Re: [Pharo-users] Tables in Pillar

2016-04-02 Thread stepharo
Le 31/3/16 17:56, Damien Cassou a écrit : Norbert Hartl writes: Wow that sounds a lot of things are possible. Do you have a roadmap? There are plenty of things we would like to do: - clean the issue tracker by doing all the simple things (it's time for users to write their ideas there)