Skip to content

Commit

Permalink
add build stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesward committed Sep 24, 2014
1 parent 41fc61a commit 8054bb8
Show file tree
Hide file tree
Showing 6 changed files with 81 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,7 @@
source 'https://rubygems.org'
ruby '2.1.2'
gem 'jekyll'
gem 'kramdown'
gem 'rack-jekyll'
gem 'rake'
gem 'puma'
63 changes: 63 additions & 0 deletions Gemfile.lock
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,63 @@
GEM
remote: https://rubygems.org/
specs:
blankslate (2.1.2.4)
classifier (1.3.4)
fast-stemmer (>= 1.0.0)
colorator (0.1)
commander (4.1.6)
highline (~> 1.6.11)
fast-stemmer (1.0.2)
ffi (1.9.4)
highline (1.6.21)
jekyll (1.5.1)
classifier (~> 1.3)
colorator (~> 0.1)
commander (~> 4.1.3)
liquid (~> 2.5.5)
listen (~> 1.3)
maruku (= 0.7.0)
pygments.rb (~> 0.5.0)
redcarpet (~> 2.3.0)
safe_yaml (~> 1.0)
toml (~> 0.1.0)
kramdown (1.4.2)
liquid (2.5.5)
listen (1.3.1)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
maruku (0.7.0)
parslet (1.5.0)
blankslate (~> 2.0)
posix-spawn (0.3.9)
puma (2.9.1)
rack (>= 1.1, < 2.0)
pygments.rb (0.5.4)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
rack (1.5.2)
rack-jekyll (0.4.1)
jekyll (>= 0.12.0, < 2.0)
rack (~> 1.5.0)
rake (10.3.2)
rb-fsevent (0.9.4)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
rb-kqueue (0.2.3)
ffi (>= 0.5.0)
redcarpet (2.3.0)
safe_yaml (1.0.3)
toml (0.1.1)
parslet (~> 1.5.0)
yajl-ruby (1.1.0)

PLATFORMS
ruby

DEPENDENCIES
jekyll
kramdown
puma
rack-jekyll
rake
1 change: 1 addition & 0 deletions Procfile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1 @@
web: bundle exec puma -t 8:32 -w 3 -p $PORT
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,5 @@
namespace :assets do
task :precompile do
puts `bundle exec jekyll build`
end
end
2 changes: 2 additions & 0 deletions _config.yml
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ github_username: jekyll
# Build settings # Build settings
markdown: kramdown markdown: kramdown
permalink: pretty permalink: pretty
gems: ['kramdown']
exclude: ['config.ru', 'Gemfile', 'Gemfile.lock', 'vendor', 'Procfile', 'Rakefile']
3 changes: 3 additions & 0 deletions config.ru
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,3 @@
require 'rack/jekyll'
require 'yaml'
run Rack::Jekyll.new

0 comments on commit 8054bb8

Please sign in to comment.