From 865a2cd3ddd899bfbaba68babdb489d2c5a2936a Mon Sep 17 00:00:00 2001 From: Vini Salazar Date: Thu, 25 Mar 2021 16:26:10 -0300 Subject: [PATCH 1/2] Use standard Gemfile from carpentries/lesson-example. Closes #39 if merged. --- Gemfile | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 5714bad..46eedf7 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,10 @@ -source "https://rubygems.org" -gem "github-pages", group: :jekyll_plugins -gem "kramdown-parser-gfm" -gem "mdl" +# frozen_string_literal: true + +source 'https://rubygems.org' + +git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } + +# Synchronize with https://pages.github.com/versions +ruby '>=2.7.1' + +gem 'github-pages', group: :jekyll_plugins From 8cbef67d7bb2f36e237988624432e94c3ad7ff41 Mon Sep 17 00:00:00 2001 From: Vini Salazar Date: Thu, 25 Mar 2021 16:46:27 -0300 Subject: [PATCH 2/2] Add downstream dependencies to Gemfile --- Gemfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Gemfile b/Gemfile index 46eedf7..fd6fc63 100644 --- a/Gemfile +++ b/Gemfile @@ -8,3 +8,5 @@ git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } ruby '>=2.7.1' gem 'github-pages', group: :jekyll_plugins +gem 'kramdown-parser-gfm' +gem 'mdl'