Hernán Morales Durand
Hernán Morales Durand
Currently icons are only stored as methods, provide them as files because they should be regenerated now and it could happen again in the future.
This PR implements the "Make Abstract" class refactoring using the new Driver interface. Make RBAbstractClass match the MOP answering both false by default in #isAbstract. Migrate RBMakeClassAbstractTransformation. Add data for...
This PR implements a first version of "Add subclass" refactoring as a driver: https://github.com/pharo-project/pharo/assets/4825959/663878b5-19e6-4c7b-a0c8-bf097d2bab4a ## Main features - The Spec UI to add a new subclass (see video above). -...
**Bug description** In `RBAddMethodTransformation>>privateTransform` a new method is compiled but the change is not recorded into the model, making `performChanges` later (for example sending `execute` to the transformation) to not...
It seems that Fuel takes a long time serializing an Array of Arrays containing multiple Strings each one. When serialization passes around 60 Mbytes, it starts writing data in chunks...
The following code should check selOrg is not nil ```smalltalk initializePresenter " Private - See superimplementor's comment " self organismList whenSelectedItemChanged: [ : selOrg | self chrList items: (self chromosomeListFor:...
Parsing GenBank XML files using #parseXMLDocumentsFromDirectory: only validates XML directory file but does not actually parse the GenBank files.
Add a feature to read a file with package names pi read pkgs.txt Take care of empty or invalid format (non-textual) files. Take care packages could be delimited by spaces...
Install specific versions could be specified in the following way: ``` $ pi install SomePackage # latest stable version $ pi install SomePackage==1.0.4 # specific version $ pi install 'SomePackage>=1.0.4'...