use bundler for blog.rb

This commit is contained in:
Sami Samhuri 2011-11-27 00:42:27 -08:00
parent 39488cf80c
commit dcc901de5b
3 changed files with 23 additions and 0 deletions

6
Gemfile Normal file
View file

@ -0,0 +1,6 @@
source :rubygems
gem 'builder'
gem 'json'
gem 'mustache'
gem 'rdiscount'

16
Gemfile.lock Normal file
View file

@ -0,0 +1,16 @@
GEM
remote: http://rubygems.org/
specs:
builder (3.0.0)
json (1.6.1)
mustache (0.99.4)
rdiscount (1.6.8)
PLATFORMS
ruby
DEPENDENCIES
builder
json
mustache
rdiscount

View file

@ -2,6 +2,7 @@
require 'time'
require 'rubygems'
require 'bundler/setup'
require 'builder'
require 'json'
require 'mustache'