https://github.com/olekscode/pharodeprecationscollector
https://github.com/olekscode/pharodeprecationscollector
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/olekscode/pharodeprecationscollector
- Owner: olekscode
- License: mit
- Created: 2020-04-01T15:22:26.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-19T22:52:45.000Z (over 4 years ago)
- Last Synced: 2025-02-11T11:41:26.057Z (5 months ago)
- Language: Smalltalk
- Size: 52.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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?