Fogbugz Command Line Client

Manage your FogBugz cases from the command line!

View the Project on GitHub bitwalker/fogbugz-cli

Built out of a desire to automate some FogBugz tasks, I've thrown this CLI together using the ruby-fogbugz wrapper. It's also great if you want a quick list of your current tasks, or a quick summary of any number of cases. See the output of fogbugz --help for details. You can get additional help on individual commands by adding the --help flag (fogbugz list --help, for example).

See this post for information on valid search syntax: http://fogbugz.stackexchange.com/questions/4399/

Features

Examples

fogbugz search ixBug:12

+-------+--------+------------------------+-------------------+
| BugID | Status | Title                  | Assigned To       |
+-------+--------+------------------------+-------------------+
| 12    | Active | This is the case title | Paul Schoenfelder |
+-------+--------+------------------------+-------------------+

fogbugz search 12, 13

+-------+--------+---------+-----------------------------------------------+
| BugID | Status           | Title                     | Assigned To       |
+-------+--------+---------+-----------------------------------------------+
| 12    | Active           | This is the case title    | Paul Schoenfelder |
| 13    | Resolved (Fixed) | This one was a no-brainer | Paul Schoenfelder |
+-------+--------+---------+-----------------------------------------------+

fogbugz search title:no-brainer

+-------+------------------+---------------------------+-------------------+
| BugID | Status           | Title                     | Assigned To       |
+-------+------------------+---------------------------+-------------------+
| 13    | Resolved (Fixed) | This one was a no-brainer | Paul Schoenfelder |
+-------+------------------+---------------------------+-------------------+

Requirements

TODO

Known Issues

License

(The MIT License)

Copyright (c) 2012 Paul Schoenfelder [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.