Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/guillep/pharo-reports
- Owner: guillep
- License: mit
- Created: 2017-10-20T07:42:53.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-23T09:00:12.000Z (about 7 years ago)
- Last Synced: 2024-10-31T06:42:05.239Z (2 months ago)
- Language: Smalltalk
- Size: 7.81 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
```