pharo-atomic-refactors

Details

Source
GitHub
Dialect
pharo (65% confidence)
License
MIT
Created
Nov. 8, 2016
Updated
Feb. 19, 2020
Topics
atomic-refactorings pharo refactorings

Categories

IDE / Dev Tools Concurrency

README excerpt

# 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.
```
← Back to results