mirror of
https://github.com/zrgn/zrgn.github.io
synced 2024-11-15 21:28:40 +00:00
12 lines
263 B
Ruby
12 lines
263 B
Ruby
source 'https://rubygems.org'
|
|
|
|
require 'json'
|
|
require 'open-uri'
|
|
|
|
ghp_vers = JSON.parse(::URI.open('https://pages.github.com/versions.json').read)
|
|
|
|
ruby "~> #{ghp_vers['ruby']}"
|
|
|
|
group :jekyll_plugins do
|
|
gem 'github-pages', "~> #{ghp_vers['github-pages']}"
|
|
end
|