Skip to content

Instantly share code, notes, and snippets.

@yyolk
Forked from jacobhak/gist:4996785
Created December 9, 2013 01:43
Show Gist options
  • Save yyolk/7866266 to your computer and use it in GitHub Desktop.
Save yyolk/7866266 to your computer and use it in GitHub Desktop.
pushover from rtorrent
require "net/https"
url = URI.parse("https://api.pushover.net/1/messages")
req = Net::HTTP::Post.new(url.path)
req.set_form_data({
:token => "application_api_key", #replace with your api key
:user => "the_user_key", #replace with your user key
:message => "Torrent finished: "+ARGV[0],
})
res = Net::HTTP.new(url.host, url.port)
res.use_ssl = true
res.verify_mode = OpenSSL::SSL::VERIFY_PEER
res.start {|http| http.request(req) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment