From 9529cafcd682e0d10e4903166bccf509d1771897 Mon Sep 17 00:00:00 2001 From: Matt Brender Date: Sat, 30 May 2015 03:15:40 -0700 Subject: [PATCH] Updating Gemfile for GitHub Pages According to [this page](http://jekyllrb.com/docs/github-pages/), our gem file should look like this one to work. --- Gemfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 538e1d2..4ff71a3 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,7 @@ source 'https://rubygems.org' -gem 'github-pages' +require 'json' +require 'open-uri' +versions = JSON.parse(open('https://pages.github.com/versions.json').read) + +gem 'github-pages', versions['github-pages'] \ No newline at end of file