瀏覽代碼

Add Jekyll to Gemfile as optional (#741)

This will allow local preview of docs/ with:

    bundle install --with=docs
    bundle exec jekyll serve --source docs
Andy Waite 4 年之前
父節點
當前提交
7b444e87ee
共有 2 個文件被更改,包括 6 次插入0 次删除
  1. 2 0
      .gitignore
  2. 4 0
      Gemfile

+ 2 - 0
.gitignore

@@ -11,3 +11,5 @@ pkg
 .dev/
 .bundle/
 vendor/
+_site/
+docs/.jekyll-cache/

+ 4 - 0
Gemfile

@@ -3,3 +3,7 @@ source "https://rubygems.org"
 gemspec
 
 gem "activeresource", "~> 5.1"
+
+group :docs, optional: true do
+  gem "jekyll"
+end