README excerpt
# PharoDeprecationsCollector
[](https://travis-ci.org/olekscode/PharoDeprecationsCollector)
[](https://ci.appveyor.com/project/olekscode/migrationrulesminer)
[](https://coveralls.io/github/olekscode/PharoDeprecationsCollector?branch=master)
[](https://raw.githubusercontent.com/olekscode/PharoDeprecationsCollector/master/LICENSE)
A tool for collecting deprecations from a Pharo image, validating them, and classifying them into several pre-defined categories. Part of the research of the on-the-fly deprecation rewriting.
## How to install it?
To install `PharoDeprecationsCollector`, go to the Playground (Ctrl+OW) in your [Pharo](https://pharo.org/) image and execute the following Metacello script (select it and press Do-it button or Ctrl+D):
```Smalltalk
Metacello new
baseline: 'PharoDeprecationsCollector';
repository: 'github://olekscode/PharoDeprecationsCollector/src';
load.
```
## How to depend on it?
If you want to add a dependency on `PharoDeprecationsCollector` to your project, include the following lines into your baseline method:
```Smalltalk
spec
baseline: 'PharoDeprecationsCollector'
with: [ spec repository: 'github://olekscode/PharoDeprecationsCollector/src' ].
```
If you are new to baselines and Metacello, check out the [Baselines](https://github.com/pharo-open-documentation/pharo-wiki/blob/master/General/Baselines.md) tutorial on Pharo Wiki.
## How to use it?