- 授权协议: 未知
- 开发语言: Ruby
- 操作系统: 未知
- 软件首页: http://rubytorrent.rubyforge.org/
- 软件文档: http://rubytorrent.rubyforge.org/api.txt
软件介绍
RubyTorrent是一个纯Ruby的BT客户端工具包,使用示例:
## world's smallest bittorrent client
require 'rubytorrent'
bt = RubyTorrent::BitTorrent.new(ARGV.shift)
thread = Thread.new do
while true
puts bt.percent_completed
sleep 15
end
end
bt.on_event(self, :complete) { thread.kill }
thread.join
