Skip to content

Instantly share code, notes, and snippets.

@BenHall
Created November 22, 2009 22:16
Show Gist options
  • Save BenHall/240757 to your computer and use it in GitHub Desktop.
Save BenHall/240757 to your computer and use it in GitHub Desktop.
require 'net/http' => true
require 'uri'
res = Net::HTTP.post_form(URI.parse('http://gist.github.com/api/v1/xml/new'), { 'files[file1.rb]' => "puts 'Hello World!'", 'files[file2.rb]' => "puts 'Gists example'"})
puts res.body
#http://gist.github.com/240755
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment