Skip to content
This repository has been archived by the owner on May 11, 2018. It is now read-only.

Commit

Permalink
Switching to Bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
citizen428 committed Sep 15, 2011
1 parent 5b674c3 commit 79f8c1c
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .gems

This file was deleted.

7 changes: 7 additions & 0 deletions Gemfile
@@ -0,0 +1,7 @@
source :rubygems

gem "sinatra"
gem "mongo"
gem "mongo_ext"
gem "newrelic_rpm"
gem "haml"
24 changes: 24 additions & 0 deletions Gemfile.lock
@@ -0,0 +1,24 @@
GEM
remote: http://rubygems.org/
specs:
bson (1.3.1)
haml (3.1.3)
mongo (1.3.1)
bson (>= 1.3.1)
mongo_ext (0.19.3)
newrelic_rpm (3.1.2)
rack (1.3.2)
sinatra (1.2.6)
rack (~> 1.1)
tilt (>= 1.2.2, < 2.0)
tilt (1.3.3)

PLATFORMS
ruby

DEPENDENCIES
haml
mongo
mongo_ext
newrelic_rpm
sinatra
6 changes: 5 additions & 1 deletion config.ru
@@ -1,5 +1,9 @@
# To use with thin
# To use with thin
# thin start -p PORT -R config.ru
require 'rubygems'
require 'bundler'

Bundler.require

require File.join(File.dirname(__FILE__), 'happynerds.rb')

Expand Down

0 comments on commit 79f8c1c

Please sign in to comment.