mirror of
https://github.com/jimeh/commonflow.org.git
synced 2026-02-19 05:46:40 +00:00
We no longer have GitHub Pages render the jekyll site for us, but rather we generate static html into the docs folder offline. Hence we can use whatever jekyll version we want.
21 lines
477 B
Ruby
21 lines
477 B
Ruby
source 'https://rubygems.org'
|
|
|
|
gem 'jekyll', '3.5.0'
|
|
|
|
group :development do
|
|
gem 'rake'
|
|
gem 'rubocop'
|
|
end
|
|
|
|
# If you have any plugins, put them here!
|
|
group :jekyll_plugins do
|
|
gem 'jekyll-assets'
|
|
gem 'jekyll-pants'
|
|
gem 'jekyll-seo-tag'
|
|
gem 'jekyll-sitemap'
|
|
gem 'uglifier' # required by 'jekyll-assets' for JS compression
|
|
end
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|