Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
opoudjis committed Sep 2, 2024
1 parent 2816fd7 commit 0614893
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion Gemfile.devel

This file was deleted.

2 changes: 1 addition & 1 deletion lib/metanorma/standoc/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ def versioned(mod, flavour)
end

module Standoc
VERSION = "2.9.5".freeze
VERSION = "2.9.6".freeze
end
end
6 changes: 3 additions & 3 deletions spec/metanorma/refs_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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..."))))
Expand All @@ -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

Expand Down

0 comments on commit 0614893

Please sign in to comment.