We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 572ea6c + 31748ad commit 8282fbcCopy full SHA for 8282fbc
Gemfile
@@ -2,19 +2,20 @@ source "https://rubygems.org"
2
3
# http://jekyllrb.com/docs/github-pages/
4
require 'json'
5
+require 'uri'
6
require 'open-uri'
7
versions =
8
begin
- JSON.parse(open('https://pages.github.com/versions.json').read)
9
+ JSON.parse(URI.parse('https://pages.github.com/versions.json').open.read)
10
rescue SocketError
11
{ 'github-pages' => 67 }
12
end
13
14
gem 'github-pages', versions['github-pages']
15
-gem "rake", "~> 10.0"
16
+gem "rake", "~> 13.0"
17
gem "rb-fsevent", "~> 0.9"
18
gem "compass", "~> 1.0"
19
gem "sass", "~> 3.4"
-gem "launchy", "~> 2.3"
20
+gem "launchy", "~> 3.0"
21
gem "redcard", "~> 1.0"
0 commit comments