Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Pundsack committed Aug 17, 2012
0 parents commit 1934d76
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source :rubygems
gem 'sinatra', '1.1.0'
gem 'thin'
21 changes: 21 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,21 @@
GEM
remote: http://rubygems.org/
specs:
daemons (1.1.9)
eventmachine (0.12.10)
rack (1.4.1)
sinatra (1.1.0)
rack (~> 1.1)
tilt (~> 1.1)
thin (1.4.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
tilt (1.3.3)

PLATFORMS
ruby

DEPENDENCIES
sinatra (= 1.1.0)
thin
1 change: 1 addition & 0 deletions Procfile
@@ -0,0 +1 @@
web: bundle exec ruby web.rb -p
5 changes: 5 additions & 0 deletions web.rb
@@ -0,0 +1,5 @@
require 'sinatra'

get '/' do
"Hello, world"
end

0 comments on commit 1934d76

Please sign in to comment.