Files
commonflow.org/Gemfile
Jim Myhrberg 33c90a3c1e Switch back to latest version of jekyll
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.
2017-07-10 19:21:37 +01:00

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]