From 06148931400175a0457d884dc74bcde40fcad0a9 Mon Sep 17 00:00:00 2001 From: Nick Nicholas Date: Mon, 2 Sep 2024 12:51:45 +1000 Subject: [PATCH] version bump --- Gemfile.devel | 1 - lib/metanorma/standoc/version.rb | 2 +- spec/metanorma/refs_spec.rb | 6 +++--- 3 files changed, 4 insertions(+), 5 deletions(-) delete mode 100644 Gemfile.devel diff --git a/Gemfile.devel b/Gemfile.devel deleted file mode 100644 index 87d89080..00000000 --- a/Gemfile.devel +++ /dev/null @@ -1 +0,0 @@ -gem "isodoc", git: "https://github.com/metanorma/isodoc", branch: "fix/yaml-no-xml" diff --git a/lib/metanorma/standoc/version.rb b/lib/metanorma/standoc/version.rb index 8a6ececb..eb028e02 100644 --- a/lib/metanorma/standoc/version.rb +++ b/lib/metanorma/standoc/version.rb @@ -19,6 +19,6 @@ def versioned(mod, flavour) end module Standoc - VERSION = "2.9.5".freeze + VERSION = "2.9.6".freeze end end diff --git a/spec/metanorma/refs_spec.rb b/spec/metanorma/refs_spec.rb index 7e3101d3..0aa080ba 100644 --- a/spec/metanorma/refs_spec.rb +++ b/spec/metanorma/refs_spec.rb @@ -1290,7 +1290,7 @@ .gsub("spec/assets/iso.xml", "iso.xml") .gsub("spec/assets/html.scss", "html.scss")) - mock_absolute_localdir + mock_absolute_localdir(4) expect(Xml::C14n.format(strip_guid(Asciidoctor.convert(input, *OPTIONS) .gsub(/iso.xml_[a-f0-9-]+/, "iso.xml_") .gsub(/ICAgIC[^<]+/, "ICAgIC...")))) @@ -1302,9 +1302,9 @@ private - def mock_absolute_localdir + def mock_absolute_localdir(times) expect(Metanorma::Utils).to receive(:localdir) - .exactly(2).times.with(anything) + .exactly(times).times.with(anything) .and_return(File.expand_path(FileUtils.pwd)) end