Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/guillep/pharo-reports

Reports for Pharo
https://github.com/guillep/pharo-reports

Last synced: 16 days ago
JSON representation

Reports for Pharo

Awesome Lists containing this project

README

        

# Pharo reports

This repository packages a series of reports useful for Pharo maintainers.

## Installation

```smalltalk
Metacello new
repository: 'github://guillep/pharo-reports:v0.1';
baseline: 'PharoReports';
load.
```

## Get closed pull requests between two dates

```smalltalk
PharoPullRequestReport new
loginUser: 'guillep' password:'***';
from: DateAndTime now;
to: DateAndTime now - 7 days;
go.
```