Project

agilezen

0.01
No commit activity in last 3 years
No release in over 3 years
Ruby wrapper for the AgileZen API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 0.10.0
~> 1.3.0
~> 0.8
~> 2.5

Runtime

~> 0.5.4
~> 0.4.0
~> 0.0.5
 Project Readme

AgileZen - A Ruby wrapper for the AgileZen API (v1.0)

Installation

gem install agilezen

Usage

When setting up the client, just specify your api key. Methods that are designed to take options in the API are designed that way in the wrapper also, as you'd expect. For more details, read the AgileZen API documentation.

require 'agilezen'

# Setup the client
client = AgileZen::Client.new(:api_key => 'yourapikey')

# Returns info for all your projects
projects = @client.projects

# Returns info for the specified project
project = @client.project(123)

# Returns info for all stories for the specified project
stories = @client.projects_stories(123)

# Returns info for a specific story within a project
story = @client.project_story(123, 5)

# Collection resources support pagination
stories = @client.projects_stories(123, :page => 2, :pageSize => 50)

# Enrichments are supported for additional details
stories = @client.projects_stories(123, :with => 'details,tags')

# Filters are supported to limit your queries
stories = @client.projects_stories(123, :where => 'tag:authentication')

Documentation

For additional details, checkout the latest generated documentation.