switch to octopress 3 (pre)

This commit is contained in:
James Walker 2014-10-01 21:26:20 -04:00
parent 5ae7c91ad1
commit 9e50301564
7 changed files with 110 additions and 42 deletions

3
.gitignore vendored
View File

@ -1,3 +1,4 @@
_site
.gist-cache
.sass-cache
.sass-cache
.bundle

View File

@ -1,5 +1,6 @@
source "http://rubygems.org"
gem "rake"
gem "jekyll"
gem "gsl"
gem "susy"
gem 'octopress', '~> 3.0.0.rc.15'
gem 'narray', :git => "https://github.com/tonyarnold/narray"
gem 'gsl', :git => "https://github.com/tonyarnold/rb-gsl"

View File

@ -1,52 +1,95 @@
GIT
remote: https://github.com/tonyarnold/narray
revision: eeb06b030320a222727e41f11a2f0be300f9dd52
specs:
narray (0.6.0.8)
GIT
remote: https://github.com/tonyarnold/rb-gsl
revision: 659a95fd9b610c02e38035b956feceb5c29e1ecb
specs:
gsl (1.14.7)
narray (>= 0.5.9)
GEM
remote: http://rubygems.org/
specs:
blankslate (2.1.2.4)
classifier (1.3.4)
fast-stemmer (>= 1.0.0)
celluloid (0.16.0)
timers (~> 4.0.0)
classifier-reborn (2.0.1)
fast-stemmer (~> 1.0)
coffee-script (2.3.0)
coffee-script-source
execjs
coffee-script-source (1.8.0)
colorator (0.1)
commander (4.1.6)
highline (~> 1.6.11)
execjs (2.2.1)
fast-stemmer (1.0.2)
ffi (1.9.3)
gsl (1.15.3)
narray (>= 0.5.9)
highline (1.6.21)
jekyll (1.4.3)
classifier (~> 1.3)
ffi (1.9.5)
hitimes (1.2.2)
jekyll (2.4.0)
classifier-reborn (~> 2.0)
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 (~> 0.9.7)
jekyll-coffeescript (~> 1.0)
jekyll-gist (~> 1.0)
jekyll-paginate (~> 1.0)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 1.1)
kramdown (~> 1.3)
liquid (~> 2.6.1)
mercenary (~> 0.3.3)
pygments.rb (~> 0.6.0)
redcarpet (~> 3.1)
safe_yaml (~> 1.0)
toml (~> 0.1.0)
liquid (2.5.5)
listen (1.3.1)
jekyll-coffeescript (1.0.1)
coffee-script (~> 2.2)
jekyll-gist (1.1.0)
jekyll-paginate (1.0.0)
jekyll-sass-converter (1.2.1)
sass (~> 3.2)
jekyll-watch (1.1.1)
listen (~> 2.7)
kramdown (1.4.2)
liquid (2.6.1)
listen (2.7.11)
celluloid (>= 0.15.2)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
rb-kqueue (>= 0.2)
maruku (0.7.1)
narray (0.6.0.8)
mercenary (0.3.4)
octopress (3.0.0.rc.15)
jekyll (~> 2.0)
mercenary (~> 0.3.2)
octopress-deploy
octopress-docs
titlecase
octopress-deploy (1.0.0)
colorator
octopress-docs
octopress-docs (0.0.8)
jekyll (~> 2.0)
octopress-escape-code (~> 1.0)
octopress-hooks (~> 2.0)
octopress-escape-code (1.0.2)
octopress-hooks (~> 2.0)
octopress-hooks (2.2.1)
jekyll (~> 2.0)
parslet (1.5.0)
blankslate (~> 2.0)
posix-spawn (0.3.8)
pygments.rb (0.5.4)
posix-spawn (0.3.9)
pygments.rb (0.6.0)
posix-spawn (~> 0.3.6)
yajl-ruby (~> 1.1.0)
rake (10.1.1)
rb-fsevent (0.9.4)
rb-inotify (0.9.3)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
rb-kqueue (0.2.2)
ffi (>= 0.5.0)
redcarpet (2.3.0)
safe_yaml (0.9.7)
sass (3.3.2)
susy (2.1.1)
sass (~> 3.3.0)
redcarpet (3.1.2)
safe_yaml (1.0.4)
sass (3.4.5)
timers (4.0.1)
hitimes
titlecase (0.1.1)
toml (0.1.1)
parslet (~> 1.5.0)
yajl-ruby (1.1.0)
@ -55,7 +98,6 @@ PLATFORMS
ruby
DEPENDENCIES
gsl
jekyll
rake
susy
gsl!
narray!
octopress (~> 3.0.0.rc.15)

11
_octopress.yml Normal file
View File

@ -0,0 +1,11 @@
# Default extension for new posts and pages
post_ext: md
page_ext: html
# Default templates for posts and pages
# Found in _templates/
post_layout: post
page_layout: page
# Format titles with titlecase?
titlecase: true

4
_templates/draft Normal file
View File

@ -0,0 +1,4 @@
---
layout: {{ layout }}
title: {{ title }}
---

4
_templates/page Normal file
View File

@ -0,0 +1,4 @@
---
layout: {{ layout }}
title: {{ title }}
---

5
_templates/post Normal file
View File

@ -0,0 +1,5 @@
---
layout: {{ layout }}
title: {{ title }}
date: {{ date }}
---