From 9e58d46b2f0075c198b0e9469ce251bf8fc1fa17 Mon Sep 17 00:00:00 2001
From: Andrea Stagi
Date: Thu, 23 Jul 2020 20:15:27 +0200
Subject: [PATCH 1/4] =?UTF-8?q?Love=20is=20=E2=9D=A4=EF=B8=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
_includes/footer.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/_includes/footer.html b/_includes/footer.html
index 4b453a7..d3097e6 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -9,7 +9,7 @@
Creative Commons Attribution 3.0 Unported License.
From 5180893b2afaf43d4f7e5d55accc0b50a1afdd1b Mon Sep 17 00:00:00 2001
From: Mike Linksvayer
Date: Thu, 23 Jul 2020 11:29:37 -0700
Subject: [PATCH 2/4] match pages gem
---
.rubocop.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.rubocop.yml b/.rubocop.yml
index 4b122f8..8230cb9 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -1,5 +1,5 @@
AllCops:
- TargetRubyVersion: 2.5
+ TargetRubyVersion: 2.7
Exclude:
- _site/**/*
- vendor/**/*
From 40fff598242ce559ca67dcbbd1f58457d0fa6913 Mon Sep 17 00:00:00 2001
From: Mike Linksvayer
Date: Thu, 23 Jul 2020 11:30:09 -0700
Subject: [PATCH 3/4] match pages gem
---
.travis.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.travis.yml b/.travis.yml
index eb64d9a..23e20cd 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,7 +5,7 @@ script: "./script/cibuild"
#environment
language: ruby
rvm:
- - 2.5.8
+ - 2.7.1
addons:
apt:
From 2d9e5be8c236cddd3399e6034932b019a5e77ef3 Mon Sep 17 00:00:00 2001
From: Mike Linksvayer
Date: Thu, 23 Jul 2020 12:28:53 -0700
Subject: [PATCH 4/4] slightly reduce branches apparent to rubocop to satisfy
rubocop
---
spec/spec_helper.rb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 192d00e..d66c491 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -105,7 +105,7 @@ def fsf_approved_licenses
object = JSON.parse(OpenURI.open_uri(url).read)
licenses = {}
object['licenses'].each_value do |meta|
- next unless (meta.include? 'identifiers') && (meta['identifiers'].include? 'spdx') && (meta.include? 'tags') && (meta['tags'].include? 'libre')
+ next unless meta.dig('identifiers', 'spdx') && (meta.include? 'tags') && (meta['tags'].include? 'libre')
meta['identifiers']['spdx'].each do |identifier|
licenses[identifier.downcase] = meta['name']