Skip to content

Commit

Permalink
Hacking with human-generated metrics.
Browse files Browse the repository at this point in the history
  • Loading branch information
jordansissel committed Jan 9, 2012
0 parents commit 11d281f
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source :rubygems
gem 'sinatra'
gem 'thin'

24 changes: 24 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,24 @@
GEM
remote: http://rubygems.org/
specs:
daemons (1.1.5)
eventmachine (0.12.10)
rack (1.4.0)
rack-protection (1.2.0)
rack
sinatra (1.3.2)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
thin (1.3.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
tilt (1.3.3)

PLATFORMS
ruby

DEPENDENCIES
sinatra
thin
1 change: 1 addition & 0 deletions Procfile
@@ -0,0 +1 @@
web: bundle exec ruby tjh.rb -p $PORT
5 changes: 5 additions & 0 deletions tjh.rb
@@ -0,0 +1,5 @@
require "sinatra"

get "/" do
"Hello world"
end

0 comments on commit 11d281f

Please sign in to comment.