Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alindeman/pivotal-tracker
https://github.com/alindeman/pivotal-tracker
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/alindeman/pivotal-tracker
- Owner: alindeman
- Created: 2013-04-11T20:13:10.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-04-13T00:44:24.000Z (over 11 years ago)
- Last Synced: 2024-11-19T22:54:48.876Z (about 1 month ago)
- Language: Clojure
- Size: 109 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pivotal-tracker
A Clojure library for interacting with the Pivotal Tracker API (v3)
## Installation
Clojars? I haven't actually released it yet.
## Usage
### Require It
```clojure
(ns my-app.core
(:require [pivotal-tracker.client :as client]))
```### List of Projects
```clojure
(client/projects "APITOKEN")
```### Specific Project (by ID)
```clojure
(client/project "APITOKEN" 12345)
```### List of Stories (by Project ID)
```clojure
(client/stories "APITOKEN" 12345)
```With filtering parameters
```clojure
(client/stories "APITOKEN" 12345 {:filter "state:started"})
```## License
Copyright © 2013 Andy Lindeman
Distributed under the MIT License.