Sha256: 585809a6b714b0c1fd2b070b3a7fdfbeb70e880e007108f1d4259dff3a2371cb
Contents?: true
Size: 668 Bytes
Versions: 2
Compression:
Stored size: 668 Bytes
Contents
begin require 'rubygems' require 'hoe' hoe = Hoe.new("multipart-post", '0.1') do |p| p.rubyforge_name = "caldersphere" p.author = "Nick Sieger" p.url = "http://github.com/nicksieger/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 task :gemspec do File.open("#{hoe.name}.gemspec", "w") {|f| f << hoe.spec.to_ruby } end rescue LoadError puts "You really need Hoe installed to be able to package this gem" end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
mlooney-multipart-post-0.1.1 | Rakefile |
multipart-post-0.1 | Rakefile |