From bf253161db534b481151da56bfa38fda6ee9662c Mon Sep 17 00:00:00 2001 From: Nick Stokoe Date: Fri, 5 May 2023 13:32:13 +0100 Subject: [PATCH] owned-by-oxford/Gemfile - explictly require rdf-rdfxml 3.2.1+ As linkeddata gem doesn't yet require this, we need to. This version includes a fix for a bug which crashes the `seod generate` step otherwise. See https://github.com/ruby-rdf/rdf-rdfxml/issues/40 --- owned-by-oxford/Gemfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/owned-by-oxford/Gemfile b/owned-by-oxford/Gemfile index c0ed0cd3..687a728f 100644 --- a/owned-by-oxford/Gemfile +++ b/owned-by-oxford/Gemfile @@ -1,3 +1,4 @@ source "https://rubygems.org" gem "se_open_data", :github => "SolidarityEconomyAssociation/se-open-data", :branch => "v2.1.9" -gem "airrecord" +gem "rdf-rdfxml", "~> 3.2.1" +gem "airrecord"