mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-04-27 14:57:40 +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 'time'
|
||||||
require 'rubygems'
|
require 'rubygems'
|
||||||
|
require 'bundler/setup'
|
||||||
require 'builder'
|
require 'builder'
|
||||||
require 'json'
|
require 'json'
|
||||||
require 'mustache'
|
require 'mustache'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue