Hi Oleksandr,
Nice project! I don't have a project recommendation but maybe my project can be
useful to you. One of the functionalities allows you to apply multiple
transformation rules in a custom set of classes (or all classes in Pharo image).
https://github.com/jordanmontt/RewriteToolsSet
Thought it might be useful for anyone who has read Pablo’s blog post - this is
a comment that I have tried to add (hopefully it will come through there):
Nice article which was very helpful in getting me quickly up to speed on
deploying a Pharo app with Docker. It might be worth adding a small
This sounds like a very nice tool.
Just a word about this particular example:
Collection >> includesAllOf: values
self
deprecated: ‘Use #includesAll: instead’
transformWith: ‘`@rec includesAllOf: `@arg’ ->
‘`@rec includesAll: `@arg’.
^ self includesAll: values
Sure
Adding some thoughts to my own post - I have experimented with dockerize.io and
so far the $2 plan (which so far I haven't been charged for) has been quite
adequate for hosting something simple (and I suspect the $5 plan would do the
trick as well).
It does get a bit more pricey when you add a
We have several projects in the Buenos Aires Smalltalk group that can match
(we provide in fact a migration package when breaking backward
compatibility including transformation rules so you have a human benchmark
to compare).
Here the ones with more history and releases:
- https://github.com/b
I guess CORMAS project could benefit on that.
We have tons of methods we don’t know if they are still used, some are
deprecated or not. A real mess 😊
Sent from my iPhone
> On 6 Apr 2021, at 20:50, Oleksandr Zaitsev wrote:
>
>
> Hello,
>
> I need your help to recommend some projects that I c
Hello,
I need your help to recommend some projects that I can use in my study of
transforming deprecations.
As many of you know, Pharo supports a very powerful concept of
"transforming" deprecations. You can deprecate a method, providing a
transformation rule. Then when a client application calls