Skip to content

Commit 8185bd4

Browse files
committed
Finish 2.1.0
2 parents 84c83f7 + e336a35 commit 8185bd4

26 files changed

+200
-29
lines changed

.travis.yml

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,15 @@ script: "bundle exec rspec spec"
44
env:
55
- CI=true
66
rvm:
7-
- 2.0
8-
- 2.1
9-
- 2.2.4
10-
- 2.3.0
11-
- jruby-9.0.4.0
12-
- rbx-2
13-
gemfile:
14-
- Gemfile
15-
- Gemfile-pure
16-
env:
17-
global:
18-
- CI=true
7+
- 2.2
8+
- 2.3
9+
- 2.4
10+
- jruby-9
11+
- rbx-3
1912
cache: bundler
2013
sudo: false
2114
matrix:
2215
allow_failures:
23-
- rvm: rbx-2
16+
- rvm: jruby-9
17+
- rvm: rbx-3
18+
dist: trusty

Gemfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ group :development do
1515
gem 'rdf-turtle', github: "ruby-rdf/rdf-turtle", branch: "develop"
1616
gem 'rdf-vocab', github: "ruby-rdf/rdf-vocab", branch: "develop"
1717
gem "rdf-xsd", github: "ruby-rdf/rdf-xsd", branch: "develop"
18-
gem 'sxp', github: "gkellogg/sxp-ruby", branch: "develop"
18+
gem 'sxp', github: "dryruby/sxp.rb", branch: "develop"
1919

2020
gem "equivalent-xml"
2121
end
2222

2323
group :debug do
24-
gem "wirble"
2524
gem "ruby-debug", platforms: :jruby
2625
gem "byebug", platform: :mri
2726
end

Gemfile-pure

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@ group :development do
1515
gem 'rdf-turtle', github: "ruby-rdf/rdf-turtle", branch: "develop"
1616
gem 'rdf-vocab', github: "ruby-rdf/rdf-vocab", branch: "develop"
1717
gem "rdf-xsd", github: "ruby-rdf/rdf-xsd", branch: "develop"
18-
gem 'sxp', github: "gkellogg/sxp-ruby", branch: "develop"
18+
gem 'sxp', github: "dryruby/sxp.rb", branch: "develop"
1919

2020
gem "equivalent-xml"
2121
end
2222

2323
group :debug do
24-
gem "wirble"
2524
gem "ruby-debug", platforms: :jruby
2625
gem "byebug", platform: :mri
2726
end

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Install with `gem install rdf-rdfxml`
1818

1919
* 100% free and unencumbered [public domain](http://unlicense.org/) software.
2020
* Implements a complete parser for [RDF/XML][].
21-
* Compatible with Ruby >= 2.0.
21+
* Compatible with Ruby >= 2.2.2.
2222

2323
## Usage:
2424
Instantiate a parser and parse source, specifying type and base-URL

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.1.0

dependencyci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
platform:
2+
Rubygems:
3+
rdf-isomorphic:
4+
tests:
5+
unmaintained: skip

example-files/example07.rdf

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0"?>
2+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3+
xmlns:dc="http://purl.org/dc/elements/1.1/"
4+
xmlns:ex="http://example.org/stuff/1.0/">
5+
<rdf:Description rdf:about="http://www.w3.org/TR/rdf-syntax-grammar"
6+
dc:title="RDF/XML Syntax Specification (Revised)">
7+
<ex:editor>
8+
<rdf:Description ex:fullName="Dave Beckett">
9+
<ex:homePage rdf:resource="http://purl.org/net/dajobe/" />
10+
</rdf:Description>
11+
</ex:editor>
12+
</rdf:Description>
13+
</rdf:RDF>

example-files/example08.rdf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3+
xmlns:dc="http://purl.org/dc/elements/1.1/">
4+
<rdf:Description rdf:about="http://www.w3.org/TR/rdf-syntax-grammar">
5+
<dc:title>RDF/XML Syntax Specification (Revised)</dc:title>
6+
<dc:title xml:lang="en">RDF/XML Syntax Specification (Revised)</dc:title>
7+
<dc:title xml:lang="en-US">RDF/XML Syntax Specification (Revised)</dc:title>
8+
</rdf:Description>
9+
10+
<rdf:Description rdf:about="http://example.org/buecher/baum" xml:lang="de">
11+
<dc:title>Der Baum</dc:title>
12+
<dc:description>Das Buch ist außergewöhnlich</dc:description>
13+
<dc:title xml:lang="en">The Tree</dc:title>
14+
</rdf:Description>
15+
</rdf:RDF>

example-files/example09.rdf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0"?>
2+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3+
xmlns:ex="http://example.org/stuff/1.0/">
4+
<rdf:Description rdf:about="http://example.org/item01">
5+
<ex:prop rdf:parseType="Literal"
6+
xmlns:a="http://example.org/a#"><a:Box required="true">
7+
<a:widget size="10" />
8+
<a:grommit id="23" /></a:Box>
9+
</ex:prop>
10+
</rdf:Description>
11+
</rdf:RDF>

example-files/example10.rdf

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0"?>
2+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3+
xmlns:ex="http://example.org/stuff/1.0/">
4+
<rdf:Description rdf:about="http://example.org/item01">
5+
<ex:size rdf:datatype="http://www.w3.org/2001/XMLSchema#int">123</ex:size>
6+
</rdf:Description>
7+
</rdf:RDF>

0 commit comments

Comments
 (0)