abcde / hellanzb

XMLRPC API all wrapped up

This URL has Read+Write access

name age message
file .gitignore Sun Oct 04 04:14:30 -0700 2009 Starting an overhaul of the testing/features. [abcde]
file Gemfile Sun Oct 04 04:17:27 -0700 2009 Units eh? [abcde]
file README.markdown Mon Jul 27 22:14:00 -0700 2009 README. [abcde]
file Rakefile Sun Oct 04 04:17:27 -0700 2009 Units eh? [abcde]
file VERSION Fri Aug 07 00:10:35 -0700 2009 Version bump to 0.0.2 [abcde]
directory bin/ Mon Jul 27 21:35:44 -0700 2009 Changing the server/client setup. Separation is... [abcde]
file cucumber.yml Sun Oct 04 04:14:30 -0700 2009 Starting an overhaul of the testing/features. [abcde]
directory features/ Sun Oct 04 04:14:30 -0700 2009 Starting an overhaul of the testing/features. [abcde]
file hellanzb.gemspec Fri Aug 07 03:06:55 -0700 2009 gemspec, whoo! [abcde]
directory lib/ Fri Aug 07 00:10:35 -0700 2009 Version bump to 0.0.2 [abcde]
directory spec/ Sun Oct 04 04:17:27 -0700 2009 Units eh? [abcde]
README.markdown

= hellanzb

== Description:

Basically a nice Ruby wrapper around the XML-RPC interface provided by hellanzb. It also provides a very basic wrapper to start and stop a hellanzb instance.

== Usage:

server = Hellanzb::Server.run('/path/to/config')
server.running?
server.stop!
server.start!

client = Hellanzb::Client.new('http://hellanzb:changeme@localhost:8761')
client.downloading?
client.processing?

queue = client.queue
queue.empty?

nzb = queue.items.first
nzb.name

== License:

(The MIT License)

Copyright (c) 2009 Dylan Egan

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.