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

https://github.com/olekscode/sourcecodedatacollector

A small tool for collecting data from source code of projects written in Pharo
https://github.com/olekscode/sourcecodedatacollector

Last synced: 3 months ago
JSON representation

A small tool for collecting data from source code of projects written in Pharo

Awesome Lists containing this project

README

        

# SourceCodeDataCollector
A small tool for collecting data from source code of projects written in Pharo

## Installation
To install `SourceCodeDataCollector`, go to the Playground (`Ctrl+OW`) in your fresh Pharo image and execute the following Metacello script (select it and press Do-it button or `Ctrl+D`):

```smalltalk
Metacello new
baseline: 'SourceCodeDataCollector';
repository: 'github://olekscode/SourceCodeDataCollector/src';
load.
```

## Usage Example

```Smalltalk
dir := '/Users/oleks/Documents/Research/2019-sourcecodedata' asFileReference.
```
```Smalltalk
dataCollector := InternalDataCollector withWorkingDirectory: dir.
dataCollector start.
```
```Smalltalk
dataCollector := ExternalDataCollector withWorkingDirectory: dir.
dataCollector start.
```