diff --git a/TODO b/TODO index 1636d2c..74cbc69 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,4 @@ cache headers for static assets - tests # shared version only diff --git a/haste b/haste deleted file mode 100755 index 350ab59..0000000 --- a/haste +++ /dev/null @@ -1,25 +0,0 @@ -#! /usr/bin/env ruby - -require 'restclient' -require 'json' - -# Get the data -data = STDIN.readlines.join -data.strip! - -# if there is no data, stop -if data == '' - puts 'no input given' - exit 1 -end - -# Decide on a server -server = ENV['HASTE_SERVER'] || 'http://localhost:7777' -server.chop! if server.end_with?('/') - -# Send the data up -back = RestClient.post "#{server}/documents", data -data = JSON.parse(back) - -# Output the url -puts "#{server}/#{data['key']}"