Skip to content
This repository has been archived by the owner on Mar 5, 2022. It is now read-only.

Commit

Permalink
Add Rake to development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Aug 21, 2020
1 parent cf85a59 commit 9c12959
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# frozen_string_literal: true

source "https://rubygems.org"

gem 'github-pages', group: :jekyll_plugins
# Fix CVE-2020-7595.
# https://github.com/advisories/GHSA-7553-jr98-vx47
gem 'nokogiri', '>= 1.10.8'

group :production do
# Latest version available:
# https://pages.github.com/versions/
gem 'github-pages', '~> 207', group: :jekyll_plugins
end

group :development do
gem 'rake', group: :test
end

group :test do
gem 'html-proofer', '~> 3.15'
end

0 comments on commit 9c12959

Please sign in to comment.