FogBugzAPI

Description

FogBugz API for Pharo http://fogbugz.com http://pharo.org

Details

Source
GitHub
Dialect
pharo (65% confidence)
License
MIT
Created
March 6, 2017
Updated
March 6, 2017
Topics
api api-client fogbugz issue-tracker pharo pharo-smalltalk smalltalk

README excerpt

# 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: 'your@email.com' password: 'secret-password'.
case := tracker getIssueWithID: 18482.
cases := tracker openIssues.
```

See `FogBugzTracker` tracker for available actions.
← Back to results