I am desperately trying to install Seaside Rest in Pharo 5. Is it recommended, or should I go back to Pharo 4? What I have done so far:
ConfigurationOfSeaside3 project stableVersion load: 'REST'
ConfigurationOfSeaside project stableVersion load
does not load the REST part.
Any ideas?
Regards
Max
The ConfigurationOfSeasideRest
is only for Seaside 3.0.x.
Since Seaside 3.1, the REST group is included in the main configuration ConfigurationOfSeaside3
.
Since this should work fine in Pharo 5, I suspect that you are hitting a Metacello issue. The recommended way to load any configuration with Metacello is with the new API:
Metacello new
configuration:'Seaside3';
repository: 'http://www.smalltalkhub.com/mc/Seaside/MetacelloConfigurations/main';
version: #stable;
load: #('REST')