Browse Source

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 years ago
parent
commit
7b444e87ee
2 changed files with 6 additions and 0 deletions
  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