public
Description: put twitter on your website with tweet, an unobtrusive javascript plugin for jquery
Homepage: http://tweet.seaofclouds.com
Clone URL: git://github.com/seaofclouds/tweet.git
seaofclouds (author)
Tue Sep 29 02:16:02 -0700 2009
commit  e20c28e4dab9f6219f3872ca6118cee3f622febe
tree    b6c0d081dce1679daf2252769e5a3a41c04d343c
parent  0c91f8a1d042b2f53d3fb801f0727245cb6aec01
tweet / main.rb
100644 9 lines (7 sloc) 0.172 kb
1
2
3
4
5
6
7
8
9
require 'rubygems'
require 'sinatra'
 
set :root, File.dirname(__FILE__)
set :public, Proc.new { File.join(root, "tweet") }
 
get "/" do
  File.open('./tweet/index.html')
end