public
Description: Ruby bindings for the bencode data serialization format
Homepage:
Clone URL: git://github.com/dasch/ruby-bencode-bindings.git
100644 15 lines (10 sloc) 0.192 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rake/testtask'
require 'rake/rdoctask'
 
##
# Run all unit tests.
Rake::TestTask.new
 
 
##
# Generate RDoc documentation.
Rake::RDocTask.new :doc do |rdoc|
  rdoc.rdoc_dir = 'doc'
end