summaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorKristian Aune <kraune@verizonmedia.com>2023-09-20 13:46:23 +0200
committerKristian Aune <kraune@verizonmedia.com>2023-09-20 13:46:23 +0200
commitb2c1d9c747d53b28c87be4c1a04e1fc763e72c45 (patch)
treefba777cb9a657c76df662c5909a22d36fe468657 /Gemfile
parentd0e57ccd4ef65accc228a148d42ac4b219995616 (diff)
Linkcheck html and markdown files
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile27
1 files changed, 27 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 00000000000..8ac0d4aed53
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,27 @@
+# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+ruby '>=3.1'
+
+source "https://rubygems.org"
+
+# Hello! This is where you manage which Jekyll version is used to run.
+# When you want to use a different version, change it below, save the
+# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
+#
+# bundle exec jekyll serve
+#
+gem "jekyll", "~> 3.9.0"
+
+# This is the default theme for new Jekyll sites. You may change this to anything you like.
+gem "minima", "~> 2.0"
+
+# kramdown v2 ships without the gfm parser by default. If you're using
+# kramdown v1, comment out this line.
+gem "kramdown-parser-gfm"
+
+# Work-around for webrick no longer included in Ruby 3.0 (https://github.com/jekyll/jekyll/issues/8523)
+gem "webrick"
+
+# Get the html-proofer to work
+gem 'rake'
+gem 'html-proofer'
+