An open API service indexing awesome lists of open source software.

https://github.com/tesonep/pharo-atomic-refactors


https://github.com/tesonep/pharo-atomic-refactors

atomic-refactorings pharo refactorings

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# pharo-atomic-refactors

This project provides an implementation of atomic automatic refactorings for Pharo 6.
The atomic automatic refactorings guarantee the preservation of the state in a stateful application.

It requires to have Refactoring2 installed in the image, so to install it, first the Refactoring2 framework should be installed.

```
Metacello new
configuration: 'Refactoring2';
repository: 'http://smalltalkhub.com/mc/GustavoSantos/Refactoring2/main';
version: '0.0.1';
load
```

Then later the atomic refactorings could be installed.

```
Metacello new
baseline: 'AtomicRefactors';
repository: 'github://tesonep/pharo-atomic-refactors';
load.
```