Skip to content

Commit 5851b93

Browse files
committed
Finish 1.1.0.1. Implement callback modes for #each_statement and #each_triple.
2 parents 0362948 + c03ba6e commit 5851b93

20 files changed

Lines changed: 2063 additions & 260 deletions

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,13 @@ env:
66
rvm:
77
- 1.9.3
88
- 2.0.0
9+
- 2.1.0
910
- jruby-19mode
1011
- rbx
12+
env:
13+
global:
14+
- CI=true
15+
matrix:
16+
- WITH_NOKOGIRI=true
17+
- WITH_NOKOGIRI=false
18+
cache: bundler

Gemfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ gemspec
44

55
gem "rdf", :git => "git://github.com/ruby-rdf/rdf.git", :branch => "develop"
66
gem "rdf-rdfa", :git => "git://github.com/ruby-rdf/rdf-rdfa.git", :branch => "develop"
7+
gem "nokogiri" unless ENV["WITH_NOKOGIRI"] == "false"
78

89
group :development do
910
gem "rdf-xsd", :git => "git://github.com/ruby-rdf/rdf-xsd.git", :branch => "develop"
@@ -19,3 +20,9 @@ group :debug do
1920
gem "debugger", :platforms => :mri_19
2021
gem "byebug", :platforms => :mri_20
2122
end
23+
24+
platforms :rbx do
25+
gem 'rubysl', '~> 2.0'
26+
gem 'rubinius', '~> 2.0'
27+
gem 'json'
28+
end

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0
1+
1.1.0.1

etc/doap.nt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<http://rubygems.org/gems/rdf-rdfxml> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .
2+
<http://rubygems.org/gems/rdf-rdfxml> <http://purl.org/dc/terms/creator> <http://greggkellogg.net/foaf#me> .
3+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#blog> <http://greggkellogg.net/> .
4+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#bug-database> <http://github.com/ruby-rdf/rdf-rdfxml/issues> .
5+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Resource_Description_Framework> .
6+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#category> <http://dbpedia.org/resource/Ruby_(programming_language)> .
7+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#created> "2010-06-03"^^<http://www.w3.org/2001/XMLSchema#date> .
8+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#description> "\n RDF::RDFXML is an RDF/XML reader/writer for Ruby using the RDF.rb library suite.\n "@en .
9+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#developer> <http://greggkellogg.net/foaf#me> .
10+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#helper> <http://njh.me/> .
11+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#documenter> <http://greggkellogg.net/foaf#me> .
12+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#download-page> <http://rubygems.org/gems/rdf-rdfxml> .
13+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#homepage> <http://github.com/gkellogg/rdf-rdfxml> .
14+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#mailing-list> <http://lists.w3.org/Archives/Public/public-rdf-ruby/> .
15+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#maintainer> <http://greggkellogg.net/foaf#me> .
16+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#name> "RDF::RDFXML" .
17+
<http://rubygems.org/gems/rdf-rdfxml> <http://usefulinc.com/ns/doap#shortdesc> "RDF/XML reader/writer for Ruby."@en .
18+
<http://rubygems.org/gems/rdf-rdfxml> <http://www.w3.org/1999/xhtml/vocab#license> <http://creativecommons.org/licenses/publicdomain/> .
19+
<http://rubygems.org/gems/rdf-rdfxml> <http://xmlns.com/foaf/0.1/maker> <http://greggkellogg.net/foaf#me> .

etc/doap.rdf

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:doap="http://usefulinc.com/ns/doap#" xmlns:dc="http://purl.org/dc/terms/" xmlns:xhv="http://www.w3.org/1999/xhtml/vocab#" xmlns:foaf="http://xmlns.com/foaf/0.1/">
2+
<rdf:RDF
3+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
4+
xmlns:doap="http://usefulinc.com/ns/doap#"
5+
xmlns:dc="http://purl.org/dc/terms/"
6+
xmlns:xhv="http://www.w3.org/1999/xhtml/vocab#"
7+
xmlns:foaf="http://xmlns.com/foaf/0.1/"
8+
xml:base="http://rubygems.org/gems/rdf-rdfxml">
39
<doap:Project rdf:about="http://rubygems.org/gems/rdf-rdfxml">
410
<dc:creator rdf:resource="http://greggkellogg.net/foaf#me"/>
511
<doap:blog rdf:resource="http://greggkellogg.net/"/>
612
<doap:bug-database rdf:resource="http://github.com/ruby-rdf/rdf-rdfxml/issues"/>
713
<doap:category rdf:resource="http://dbpedia.org/resource/Resource_Description_Framework"/>
8-
<doap:category>
9-
<rdf:Description rdf:about="http://dbpedia.org/resource/Ruby_(programming_language)">
10-
<doap:programming-language>Ruby</doap:programming-language>
11-
</rdf:Description>
12-
</doap:category>
14+
<doap:category rdf:resource="http://dbpedia.org/resource/Ruby_(programming_language)"/>
1315
<doap:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-06-03</doap:created>
1416
<doap:description xml:lang="en">
1517
RDF::RDFXML is an RDF/XML reader/writer for Ruby using the RDF.rb library suite.

0 commit comments

Comments
 (0)