SourceCodeDataCollector

Description

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

Details

Source
GitHub
Dialect
pharo (25% confidence)
License
MIT
Stars
1
Forks
1
Created
Aug. 8, 2019
Updated
Dec. 14, 2020

README excerpt

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