[Pharo-users] Re: Help Needed: Looking for projects to use in a study of transforming deprecations

2021-04-06 Thread Sebastian Jordan
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

[Pharo-users] Re: Whats the easiest/cheapest way to run a Pharo web app in 2021?

2021-04-06 Thread Tim Mackinnon
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

[Pharo-users] Re: Help Needed: Looking for projects to use in a study of transforming deprecations

2021-04-06 Thread Richard O'Keefe
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

[Pharo-users] Re: Whats the easiest/cheapest way to run a Pharo web app in 2021?

2021-04-06 Thread Tim Mackinnon
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

[Pharo-users] Re: Help Needed: Looking for projects to use in a study of transforming deprecations

2021-04-06 Thread Gabriel Cotelli
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

[Pharo-users] Re: Help Needed: Looking for projects to use in a study of transforming deprecations

2021-04-06 Thread serge . stinckwich
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

[Pharo-users] Help Needed: Looking for projects to use in a study of transforming deprecations

2021-04-06 Thread Oleksandr Zaitsev
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