From 59111275c11f21fa93ad1154975b261cc008981a Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 9 Oct 2023 11:04:08 +0300 Subject: [PATCH] Gemfile: practically rewrite to scope gem sources, add git-lfs --- Gemfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/Gemfile b/Gemfile index e286627..c074ccb 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,8 @@ -source "https://rubygems.org" -# For now this is a GitHub Pages hosted website. -# Ref: https://github.com/Mikaela/mikaela.github.io/issues/153 -gem "github-pages" -# Required for `bundle exec jekyll serve` -gem "webrick" +source "https://rubygems.org" do + gem "github-pages" + gem "webrick" +end + +source "https://packagecloud.io/github/git-lfs" do + gem "git-lfs" +end