Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jurajkubelka/fogbugzapi
FogBugz API for Pharo http://fogbugz.com http://pharo.org
https://github.com/jurajkubelka/fogbugzapi
api api-client fogbugz issue-tracker pharo pharo-smalltalk smalltalk
Last synced: 6 days ago
JSON representation
FogBugz API for Pharo http://fogbugz.com http://pharo.org
- Host: GitHub
- URL: https://github.com/jurajkubelka/fogbugzapi
- Owner: JurajKubelka
- License: mit
- Created: 2017-03-06T15:10:27.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-27T18:50:36.000Z (over 7 years ago)
- Last Synced: 2024-10-31T13:46:01.385Z (about 2 months ago)
- Topics: api, api-client, fogbugz, issue-tracker, pharo, pharo-smalltalk, smalltalk
- Language: Smalltalk
- Size: 119 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FogBugzAPI
[FogBugz](http://fogbugz.com) API for [Pharo](http://pharo.org).
This is a fork of http://smalltalkhub.com/#!/~Pharo/ci
## Installation
```
Metacello new
baseline: #FogBugz;
repository: 'github://JurajKubelka/FogBugz/src';
load.
```## Usage
```
| tracker case |
tracker := FogBugzTracker pharo logOnWithEmail: '[email protected]' password: 'secret-password'.
case := tracker getIssueWithID: 18482.
cases := tracker openIssues.
```See `FogBugzTracker` tracker for available actions.