Sha256: dcf17cbc2e0cd27fd1de16c0f1a5c7b66834cb52918144b47a4afd94b46fe84c

Contents?: true

Size: 715 Bytes

Versions: 6

Compression:

Stored size: 715 Bytes

Contents

begin
require 'rubygems'
require 'hoe'

require 'lib/multipart_post'

hoe = Hoe.new("multipart-post", MultipartPost::VERSION) 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

6 entries across 6 versions & 3 rubygems

Version Path
nicksieger-multipart-post-0.9 Rakefile
puppet-module-0.3.4 vendor/multipart-post-1.0/Rakefile
puppet-module-0.3.3 vendor/multipart-post-1.0/Rakefile
puppet-module-0.3.2 vendor/multipart-post-1.0/Rakefile
puppet-module-0.3.0 vendor/multipart-post-1.0/Rakefile
multipart-post-1.0 Rakefile