Sha256: 73cd1db8704f628ea2b12605937aff57ece22bfe8cfab07eb3205bfce97c16f4
Contents?: true
Size: 1.5 KB
Versions: 2
Compression:
Stored size: 1.5 KB
Contents
= Sabnzbd version 0.1.0 Daniƫl Zwijnenburg This gem can be used to gather status and download information from your sabnzb instance. = Usage You can use this gem by including it inside your Gemfile: gem "sabnzbd" If you have a running instance of sabnzbd somewhere you will need to get the API key (you can find the API key under config/general > API KEY) and url(defaults to localhost:8080). sab = Sabnzbd.new({api_key: "your_api_key_here"}) sab.base_uri => "localhost:8080" sab.paused? => false sab.slots => [#<Sabnzbd::Slot:0x007fb601049638 @time_left="0:00:00", @mb=23749.483629, @msgid="", @filename="a_big_legal_file", @mb_left=22061.784398] sab.slots.first.filename => "a_big_legal_file" == Contributing to sabnzbd * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet. * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it. * Fork the project. * Start a feature/bugfix branch. * Commit and push until you are happy with your contribution. * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally. * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it. == Copyright Copyright (c) 2012 Daniel Zwijnenburg. See LICENSE.txt for further details.
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sabnzbd-0.2.0 | README.rdoc |
sabnzbd-0.1.1 | README.rdoc |