Skip to content

Commit

Permalink
Use budler
Browse files Browse the repository at this point in the history
  • Loading branch information
tonywok committed Mar 25, 2012
1 parent 2eea7f8 commit 4004b34
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
node_modules/*
.rvmrc
9 changes: 9 additions & 0 deletions Gemfile
@@ -0,0 +1,9 @@
source "http://rubygems.org"

gem 'sinatra'
gem 'haml'

group :development do
gem 'shotgun'
end

22 changes: 22 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,22 @@
GEM
remote: http://rubygems.org/
specs:
haml (3.1.4)
rack (1.4.1)
rack-protection (1.2.0)
rack
shotgun (0.9)
rack (>= 1.0)
sinatra (1.3.2)
rack (~> 1.3, >= 1.3.6)
rack-protection (~> 1.2)
tilt (~> 1.3, >= 1.3.3)
tilt (1.3.3)

PLATFORMS
ruby

DEPENDENCIES
haml
shotgun
sinatra
7 changes: 6 additions & 1 deletion config.ru
@@ -1,2 +1,7 @@
require 'test'
require 'bundler'

Bundler.require

require './test'

run Sinatra::Application

0 comments on commit 4004b34

Please sign in to comment.