From e1738e551f230dd324339acc0fb51448e1be945b Mon Sep 17 00:00:00 2001 From: vonavi Date: Tue, 21 Jan 2014 11:47:27 +0200 Subject: [PATCH] Create 'Gemfile' and '.gitignore'. --- .gitignore | 4 ++++ Gemfile | 4 ++++ Gemfile.lock | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 .gitignore create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40a6895 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/.ruby-* +/public/* +!/public/.gitkeep +/*/_drafts/ diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..0495dd1 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source 'https://rubygems.org' + +gem 'jekyll', '~> 1.4.3' +gem 'pygments.rb', '~> 0.5.4' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..7899ba1 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,52 @@ +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.5) + highline (~> 1.6.11) + fast-stemmer (1.0.2) + ffi (1.9.3) + highline (1.6.20) + jekyll (1.4.3) + 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 (~> 0.9.7) + toml (~> 0.1.0) + liquid (2.5.5) + listen (1.3.1) + rb-fsevent (>= 0.9.3) + rb-inotify (>= 0.9) + rb-kqueue (>= 0.2) + maruku (0.7.1) + parslet (1.5.0) + blankslate (~> 2.0) + posix-spawn (0.3.8) + pygments.rb (0.5.4) + posix-spawn (~> 0.3.6) + yajl-ruby (~> 1.1.0) + rb-fsevent (0.9.4) + rb-inotify (0.9.3) + ffi (>= 0.5.0) + rb-kqueue (0.2.0) + ffi (>= 0.5.0) + redcarpet (2.3.0) + safe_yaml (0.9.7) + toml (0.1.0) + parslet (~> 1.5.0) + yajl-ruby (1.1.0) + +PLATFORMS + ruby + +DEPENDENCIES + jekyll (~> 1.4.3) + pygments.rb (~> 0.5.4)