No commit activity in last 3 years
No release in over 3 years
This aims to provide similar features to access to Bugzilla through WebService APIs in Ruby -- RMagcik stripped variant of ruby-bugzilla.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.0
~> 2.0

Runtime

 Project Readme

Ruby binding for Bugzilla WebService APIs

This aims to provide similar features in Ruby to access to Bugzilla through WebService APIs. currently the following APIs are available:

bzconsole usage

as example, in the bin directory, we have a tool named bzconsole. with that, you can login, search and get a bug. some examples:

list all new bugs, from Novell, created after 2014-09-25, with product Security (SUSE Security Incidents):

bzconsole search --status=NEW --create-time=2014-09-25 --product=Security --detailed-list nvbz

similar for Red Hat:

bzconsole search --status=NEW --create-time=2014-09-28 --product=Security --detailed-list rhbz

search without login:

bzconsole search --status=NEW --anonymous --create-time=2014-09-28 --product=Security --detailed-list rhbz

get a specific bug:

bzconsole getbug nvbz:889526

Copyright

Copyright (c) 2010-2014 Red Hat, Inc. See COPYING for details.

License

This library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

Authors

Akira TAGOH