Sha256: 628018cf8d422082d4f2bb24c8c424058aaf2be80c764694eae835cacaf4b62e

Contents?: true

Size: 674 Bytes

Versions: 1

Compression:

Stored size: 674 Bytes

Contents

# bamboo-client

Ruby clients for Bamboo's REST APIs:

* http://confluence.atlassian.com/display/BAMBOO/Bamboo+REST+APIs
* http://confluence.atlassian.com/display/BAMBOO/Bamboo+Remote+API (deprecated)

## Example

```ruby
client = Bamboo::Client.for(:rest, "http://bamboo.example.com/")
client.login(user, pass) # required for some API calls

project = client.projects.first
project.key
project.url

plan = project.plans.first
plan.key
plan.enabled?

plan.queue unless plan.building?
sleep 1 until plan.building?
sleep 1 while plan.building?

result = plan.results.first
result.key
result.successful?
result.start_time
result.completed_time
result.state
# etc
```










Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bamboo-client-0.1.9 README.md