Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.