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

Runtime

>= 0.6
 Project Readme

Ruby FogBugz API Wrapper¶ ↑

An attempt at creating a wrapper for the FogBugz API in Ruby.

FogBugz: www.fogbugz.com/

FogBugz API Docs: www.fogcreek.com/FogBugz/docs/60/topics/advanced/API.html

This is very much a work in progress. I needed to scratch an itch with an internal project and started on this. There are many functions of the API which are not yet implemented as a result. Please check the code to see what is done and what is not.

If you want to help out please e-mail Austin (austin.moody@gmail.com) and he can add you as a collaborator.

Installation¶ ↑

You can install the gem from github.com by using these commands:

gem sources -a gems.github.com

sudo gem install austinmoody-fogbugz-api

Requirements¶ ↑

Example Usage¶ ↑

fb = FogBugz.new(“my.fogbugzserver.com”,true) # create instance

fb.logon(“mylogin”,“mypassword”) # logs into FogBugz and sets token

mycases = fb.search(“AssignedTo:"Austin Moody"”) # search terms just as in FogBugz

projects = fb.projects # get a list of projects

fb.logoff # logout

See the code and potentially the wiki at github.com for more information.