aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar kchodorow <kchodorow@google.com>2017-04-20 20:48:07 +0200
committerGravatar Vladimir Moskva <vladmos@google.com>2017-04-24 16:49:52 +0200
commit9792734e83cf88c44bdf5ad3890f81c145dde042 (patch)
treeee65f3fc65a477599d0b2dc4223e72c20efc7ef8
parente534bffb99b0e07d23cfff69a3151ac4d99838d9 (diff)
Prevent the paginate deprecation warning
Without this, serve-docs.sh prints: Deprecation: You appear to have pagination turned on, but you haven't included the `jekyll-paginate` gem. Ensure you have `gems: [jekyll-paginate]` in your configuration file. PiperOrigin-RevId: 153737266
-rw-r--r--site/_config.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/site/_config.yml b/site/_config.yml
index 1caaaba15b..9d549e3cc7 100644
--- a/site/_config.yml
+++ b/site/_config.yml
@@ -5,3 +5,4 @@ highlighter: pygments
sass:
sass_dir: _sass
default_version: "master"
+gems: [jekyll-paginate]