Skip to content

Commit

Permalink
Finish 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Jan 29, 2022
2 parents edc3e0f + 8be1edd commit 82b915d
Show file tree
Hide file tree
Showing 11 changed files with 46 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
ruby:
- 2.6
- 2.7
- 3.0
- "3.0"
- 3.1
- ruby-head
- jruby
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/generate-docs.yml
@@ -0,0 +1,27 @@
name: Build & deploy documentation
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Update gh-pages with docs
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
- name: Install required gem dependencies
run: gem install yard --no-document
- name: Build YARD Ruby Documentation
run: yardoc
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./doc/yard
publish_branch: gh-pages
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -71,7 +71,7 @@ The reader exposes a `#rdfa` method, which can be used to retrieve the transform

## Resources
* [RDF.rb][RDF.rb]
* [Documentation](https://www.rubydoc.info/github/ruby-rdf/rdf-microdata/)
* [Documentation](https://ruby-rdf.github.io/rdf-microdata/)
* [History](file:History.md)
* [Microdata][]
* [Microdata RDF][]
Expand Down Expand Up @@ -113,4 +113,4 @@ see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.
[PDD]: https://unlicense.org/#unlicensing-contributions
[Microdata]: https://dev.w3.org/html5/md/Overview.html "HTML Microdata"
[Microdata RDF]: https://dvcs.w3.org/hg/htmldata/raw-file/default/microdata-rdf/index.html "Microdata to RDF"
[Microdata doc]: https://rubydoc.info/github/ruby-rdf/rdf-microdata/frames
[Microdata doc]: https://ruby-rdf.github.io/rdf-microdata/frames
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.2.0
3.2.1
2 changes: 1 addition & 1 deletion lib/rdf/microdata.rb
Expand Up @@ -15,7 +15,7 @@ module RDF
# end
# end
#
# @see https://www.rubydoc.info/github/ruby-rdf/rdf/
# @see https://ruby-rdf.github.io/rdf/
# @see https://www.w3.org/TR/2011/WD-microdata-20110525/
#
# @author [Gregg Kellogg](https://greggkellogg.net/)
Expand Down
3 changes: 2 additions & 1 deletion lib/rdf/microdata/rdfa_reader.rb
Expand Up @@ -97,7 +97,8 @@ def initialize(input = $stdin, **options, &block)
# Add @vocab to referenced using the closest ansestor having @vocab of item.
# If the element with id reference has no resource attribute, add a resource attribute whose value is a NUMBER SIGN U+0023 followed by reference to the element.
# If the element with id reference has no typeof attribute, add a typeof="rdfa:Pattern" attribute to the element.
referenced.wrap(%(<div vocab="#{item_vocab}" resource="##{ref}" typeof="rdfa:Pattern"))
# FIXME: This broke in Nokogiri 13.0
referenced.wrap(%(<div vocab="#{item_vocab}" resource="##{ref}" typeof="rdfa:Pattern" />))

# Add a link child element to the element that represents the item, with a rel="rdfa:copy" attribute and an href attribute whose value is a NUMBER SIGN U+0023 followed by reference
link = ::Nokogiri::XML::Node.new('link', input)
Expand Down
2 changes: 1 addition & 1 deletion lib/rdf/microdata/reader.rb
Expand Up @@ -39,7 +39,7 @@ def base_uri

##
# Reader options
# @see https://www.rubydoc.info/github/ruby-rdf/rdf/RDF/Reader#options-class_method
# @see https://ruby-rdf.github.io/rdf/RDF/Reader#options-class_method
def self.options
super + [
RDF::CLI::Option.new(
Expand Down
11 changes: 9 additions & 2 deletions rdf-microdata.gemspec
Expand Up @@ -6,10 +6,17 @@ Gem::Specification.new do |gem|
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')

gem.name = "rdf-microdata"
gem.homepage = "https://ruby-rdf.github.com/rdf-microdata"
gem.homepage = "https://github.com/ruby-rdf/rdf-microdata"
gem.license = 'Unlicense'
gem.summary = "Microdata reader for Ruby."
gem.description = 'Reads HTML Microdata as RDF.'
gem.metadata = {
"documentation_uri" => "https://ruby-rdf.github.io/rdf-microdata",
"bug_tracker_uri" => "https://github.com/ruby-rdf/rdf-microdata/issues",
"homepage_uri" => "https://github.com/ruby-rdf/rdf-microdata",
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/",
"source_code_uri" => "https://github.com/ruby-rdf/rdf-microdata",
}

gem.authors = %w(Gregg Kellogg)
gem.email = 'public-rdf-ruby@w3.org'
Expand All @@ -24,7 +31,7 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'rdf-rdfa', '~> 3.2'
gem.add_runtime_dependency 'rdf-xsd', '~> 3.2'
gem.add_runtime_dependency 'htmlentities', '~> 4.3'
gem.add_runtime_dependency 'nokogiri' , '~> 1.12'
gem.add_runtime_dependency 'nokogiri' , '~> 1.13'

gem.add_development_dependency 'equivalent-xml' , '~> 0.6'
gem.add_development_dependency 'yard' , '~> 0.9'
Expand Down
2 changes: 0 additions & 2 deletions script/tc
Expand Up @@ -33,7 +33,6 @@ def run_tc(tc, **options)
result = nil
graph = RDF::Graph.new

#require 'byebug'; byebug
if tc.positive_test?
begin
graph << reader
Expand All @@ -46,7 +45,6 @@ def run_tc(tc, **options)
begin
graph << reader
STDERR.puts "Expected exception" if options[:verbose]
require 'byebug'; byebug
result = "failed"
rescue RDF::ReaderError
result = "passed"
Expand Down
2 changes: 1 addition & 1 deletion spec/rdfa_reader_spec.rb
Expand Up @@ -629,7 +629,7 @@

],
}.each do |name, (md, nt)|
it "parses #{name}" do
it "parses #{name}", pending: "Broke in Nokogiri 13.0" do
expect(parse(md)).to be_equivalent_graph(nt, logger: @logger)
end
end
Expand Down
1 change: 1 addition & 0 deletions spec/suite_spec.rb
Expand Up @@ -24,6 +24,7 @@
%w(0075 0078).include?(t.name.split.last) && skip("Differences in number parsing")
%w(0081 0082 0084).include?(t.name.split.last) && skip("No @itemprop-reverse")
%w(0064).include?(t.name.split.last) && pending("Double use of itemref with different vocabularies")
%w(0085).include?(t.name.split.last) && pending("Broke in Nokogiri 13.0")
end

reader = RDF::Microdata::Reader.open(t.action,
Expand Down

0 comments on commit 82b915d

Please sign in to comment.