diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..dc7600f --- /dev/null +++ b/Gemfile @@ -0,0 +1,9 @@ +source 'https://rubygems.org' + +gem 'rake' +gem 'multi_json' +gem 'hashie' +gem 'awesome_print' +gem 'jekyll' +gem 'rdiscount' +gem 'RedCloth' diff --git a/Rakefile b/Rakefile index e4293ef..fa84733 100644 --- a/Rakefile +++ b/Rakefile @@ -47,3 +47,15 @@ YAML end end end + +desc "Run jekyll serve" +task :serve do + puts "Startup web service" + `jekyll serve` +end + +desc "Run jekyll build" +task :build do + puts "Start to build web pages" + `jekyll build` +end diff --git a/_config.yml b/_config.yml index 6d67c09..bb8ca6d 100644 --- a/_config.yml +++ b/_config.yml @@ -1,2 +1,2 @@ markdown: rdiscount -pygments: true +highlighter: rouge diff --git a/_layouts/post.html b/_layouts/post.html index e77b468..f56e8cc 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,7 +2,7 @@ layout: master ---
@@ -13,7 +13,7 @@