mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
use bundler for blog.rb
This commit is contained in:
parent
39488cf80c
commit
dcc901de5b
3 changed files with 23 additions and 0 deletions
6
Gemfile
Normal file
6
Gemfile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
source :rubygems
|
||||
|
||||
gem 'builder'
|
||||
gem 'json'
|
||||
gem 'mustache'
|
||||
gem 'rdiscount'
|
||||
16
Gemfile.lock
Normal file
16
Gemfile.lock
Normal 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
|
||||
1
blog.rb
1
blog.rb
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
require 'time'
|
||||
require 'rubygems'
|
||||
require 'bundler/setup'
|
||||
require 'builder'
|
||||
require 'json'
|
||||
require 'mustache'
|
||||
|
|
|
|||
Loading…
Reference in a new issue