comparison Gemfile @ 182:7a664b44fd8d

Use Bundler for consistent development environment with Jekyll. * README.md: Update documentation for new development workflow * Makefile: Remove custom tool version checks. * _config.yml: Adapt to Bundler workflow. * Gemfile: Document requirements for Bundler. * Gemfile.lock: Document currently used tool versions for Bundler.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Wed, 20 May 2020 14:05:39 +0900
parents
children ff5b4e46fe3d
comparison
equal deleted inserted replaced
181:0fe4f2163a9c 182:7a664b44fd8d
1 source "https://rubygems.org"
2
3 # Hello! This is where you manage which Jekyll version is used to run.
4 # When you want to use a different version, change it below, save the
5 # file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
6 #
7 # bundle exec jekyll serve
8 #
9 # This will help ensure the proper Jekyll version is running.
10 # Happy Jekylling!
11 gem "jekyll", "~> 3.8.6"
12
13 # If you have any plugins, put them here!
14 group :jekyll_plugins do
15 gem "jekyll-feed", "~> 0.6"
16 end
17
18 gem "pygments.rb"
19
20 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
21 # and associated library.
22 install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
23 gem "tzinfo", "~> 1.2"
24 gem "tzinfo-data"
25 end
26
27 # Performance-booster for watching directories on Windows
28 gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?