annotate Gemfile @ 183:ff5b4e46fe3d

Update build information.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Wed, 08 Jul 2020 11:08:19 +0900
parents 7a664b44fd8d
children dedb85c54245
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
182
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
1 source "https://rubygems.org"
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
2
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
3 # Hello! This is where you manage which Jekyll version is used to run.
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
4 # When you want to use a different version, change it below, save the
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
5 # file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
6 #
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
7 # bundle exec jekyll serve
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
8 #
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
9 # This will help ensure the proper Jekyll version is running.
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
10 # Happy Jekylling!
183
ff5b4e46fe3d Update build information.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 182
diff changeset
11
ff5b4e46fe3d Update build information.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 182
diff changeset
12 # NOTE: Jekyll 4 released 2020-05-09, but no support for Pygments, see below
ff5b4e46fe3d Update build information.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 182
diff changeset
13 # https://jekyllrb.com/docs/liquid/tags/
ff5b4e46fe3d Update build information.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 182
diff changeset
14 gem "jekyll", "~> 3.8.7" # Release 2020-05-08
182
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
15
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
16 # If you have any plugins, put them here!
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
17 group :jekyll_plugins do
183
ff5b4e46fe3d Update build information.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 182
diff changeset
18 gem "jekyll-feed", "~> 0.14" # Release 2020-06-24
182
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
19 end
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
20
183
ff5b4e46fe3d Update build information.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 182
diff changeset
21 # Rouge is the default highlighter for Jekyll 4 and does not support Octave
ff5b4e46fe3d Update build information.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 182
diff changeset
22 # highlighting yet. Thus stay on Jekyll 3.8 for a while.
182
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
23 gem "pygments.rb"
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
24
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
25 # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
26 # and associated library.
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
27 install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
28 gem "tzinfo", "~> 1.2"
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
29 gem "tzinfo-data"
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
30 end
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
31
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
32 # Performance-booster for watching directories on Windows
7a664b44fd8d Use Bundler for consistent development environment with Jekyll.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents:
diff changeset
33 gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?