From 89fad396fca6df115af24b6721721e358c1b884d Mon Sep 17 00:00:00 2001 From: Alexandru Coman Date: Fri, 8 Jan 2016 21:17:02 +0200 Subject: [PATCH] Add jekyll-press plugin --- Gemfile | 2 +- _config.yml | 6 ++++++ _plugins/bundler.rb | 5 +++++ 3 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 _plugins/bundler.rb diff --git a/Gemfile b/Gemfile index b19e979..06b56b5 100644 --- a/Gemfile +++ b/Gemfile @@ -6,4 +6,4 @@ gem "rake", "~> 10.1.1" gem 'compass' gem 'sass-media_query_combiner' gem 'autoprefixer-rails' - +gem 'jekyll-press' diff --git a/_config.yml b/_config.yml index 9b1a79f..b37e2ae 100644 --- a/_config.yml +++ b/_config.yml @@ -19,6 +19,12 @@ exclude: - .gitignore - .travis.yml +jekyll-press: + exclude: ['sitemap.xml', '*.css'] + js_options: {} + css_options: {} + html_options: {} + # Enable minification SASS sass: style: compressed diff --git a/_plugins/bundler.rb b/_plugins/bundler.rb new file mode 100644 index 0000000..f1d5c68 --- /dev/null +++ b/_plugins/bundler.rb @@ -0,0 +1,5 @@ +# _plugins/bundler.rb +require "rubygems" +require "bundler/setup" + +Bundler.require(:default)