require 'rubygems' require 'hoe' Hoe.new("multipart-post", '0.1') do |p| p.rubyforge_name = "multipart-post" p.author = "Nick Sieger" p.url = "http://svn.caldersphere.net/svn/main/multipart-post" p.email = "nick@nicksieger.com" p.description = "Use with Net::HTTP to do multipart form posts. IO values that have #content_type, #original_filename, and #local_path will be posted as a binary file." p.summary = "Creates a multipart form post accessory for Net::HTTP." end