Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
== Welcome to Bugzilla API for Ruby It's clone from Rubzilla, http://rubyforge.org/projects/rubzilla/ I have made some refactoring, fixed some bugs and added new functions from Bugzilla API 3.4 Sadly, removed "Active Record"-like finders... For comlete information about using Bugzilla API see documentation: http://www.bugzilla.org/docs/3.6/en/html/api/Bugzilla/WebService/Bug.html http://www.bugzilla.org/docs/3.6/en/html/api/Bugzilla/WebService/Product.html http://www.bugzilla.org/docs/3.6/en/html/api/Bugzilla/WebService/User.html (c) 2010, Dmitry 'radiant' Volkov == Getting Started 1. Set valid connection settings at config/bugzilla.yml 2. Read comments at bugzilla.rb :) == Example: newBugs = Bugzilla::Bugzilla.instance.search({"status" => "NEW"}) freeUsers = Bugzilla::Bugzilla.instance.users({"match" => [".org"]}) == NB! Some bug's fields can't retrived by official API [version, milestone, estimate time, etc.] So it can be useful use 'internals' field from API. But remember it's bad practice. See example.rb for more information.