Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/astares/bugzilla-rest
Pharo wrapper for Bugzilla REST API
https://github.com/astares/bugzilla-rest
bugzilla issue-tracker pharo
Last synced: 24 days ago
JSON representation
Pharo wrapper for Bugzilla REST API
- Host: GitHub
- URL: https://github.com/astares/bugzilla-rest
- Owner: astares
- Created: 2016-11-04T23:28:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-30T09:46:48.000Z (almost 8 years ago)
- Last Synced: 2024-10-31T06:41:48.642Z (2 months ago)
- Topics: bugzilla, issue-tracker, pharo
- Language: Smalltalk
- Size: 27.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bugzilla-REST
###### Pharo wrapper for Bugzilla [REST API](https://wiki.mozilla.org/Bugzilla:REST_API)## Usage
To start you need access to a bugzilla server
```Smalltalk
BzBugzilla on: 'https://bugzilla.mozilla.org'
```you can also play around with the example Bugzilla server from mozilla.org
```Smalltalk
BzBugzilla example
```## Retrieving a bug
```Smalltalk
BzBugzilla example bug: 35
```
returns a new bug with the given bug number.## Retrieving a user
```Smalltalk
(BzBugzilla example bug: 35) creator
```