Skip to content

Commit 3a85d1c

Browse files
committed
Finish 3.1.1
2 parents 831b63a + ae8890e commit 3a85d1c

File tree

11 files changed

+2456
-2455
lines changed

11 files changed

+2456
-2455
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Community contributions are essential for keeping Ruby RDF great. We want to kee
66

77
This repository uses [Git Flow](https://github.com/nvie/gitflow) to manage development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
88

9-
* create or respond to an issue on the [Github Repository](http://github.com/ruby-rdf/ld-patch/issues)
9+
* create or respond to an issue on the [Github Repository](https://github.com/ruby-rdf/ld-patch/issues)
1010
* Fork and clone the repo:
1111
`git clone [email protected]:your-username/ld-patch.git`
1212
* Install bundle:

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
source "http://rubygems.org"
1+
source "https://rubygems.org"
22

33
gemspec
44

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Full documentation available on [Rubydoc.info][LD-Patch doc]
5050
Bind ?ruby <> / doap:programming-language .
5151
Cut ?ruby .
5252
)
53-
operator = LD::Patch.parse(patch, base_uri: "http://rubygems.org/gems/ld-patch")
53+
operator = LD::Patch.parse(patch, base_uri: "https://rubygems.org/gems/ld-patch")
5454
operator.execute(queryable) # alternatively queryable.query(operator)
5555

5656
## Command Line
@@ -74,7 +74,7 @@ The parser takes branch and follow tables generated from the [LD Patch Grammar](
7474
## Dependencies
7575

7676
* [Ruby](http://ruby-lang.org/) (>= 2.4)
77-
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.1)
77+
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.1)
7878
* [EBNF][] (~> 1.2)
7979
* [SPARQL][] (~> 3.1)
8080
* [SXP][] (~> 1.1)
@@ -84,7 +84,7 @@ The parser takes branch and follow tables generated from the [LD Patch Grammar](
8484
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
8585

8686
## Author
87-
* [Gregg Kellogg](http://github.com/gkellogg) - <http://greggkellogg.net/>
87+
* [Gregg Kellogg](https://github.com/gkellogg) - <http://greggkellogg.net/>
8888

8989
## Contributing
9090
This repository uses [Git Flow](https://github.com/nvie/gitflow) to mange development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
@@ -107,12 +107,12 @@ A copy of the [LD Patch EBNF](file:etc/ld-patch.ebnf) and derived parser files a
107107
[YARD]: http://yardoc.org/
108108
[YARD-GS]: http://rubydoc.info/docs/yard/file/docs/GettingStarted.md
109109
[PDD]: http://lists.w3.org/Archives/Public/public-rdf-ruby/2010May/0013.html
110-
[RDF.rb]: http://rubygems.org/gems/rdf
111-
[RDF::XSD]: http://rubygems.org/gems/rdf-xsd
112-
[EBNF]: http://rubygems.org/gems/ebnf
113-
[SPARQL]: http://rubygems.org/gems/sparql
114-
[Linked Data]: http://rubygems.org/gems/linkeddata
110+
[RDF.rb]: https://rubygems.org/gems/rdf
111+
[RDF::XSD]: https://rubygems.org/gems/rdf-xsd
112+
[EBNF]: https://rubygems.org/gems/ebnf
113+
[SPARQL]: https://rubygems.org/gems/sparql
114+
[Linked Data]: https://rubygems.org/gems/linkeddata
115115
[SSE]: http://openjena.org/wiki/SSE
116-
[SXP]: http://rubygems.org/gems/sxp-ruby
116+
[SXP]: https://rubygems.org/gems/sxp-ruby
117117
[LD Patch]: http://www.w3.org/TR/ldpatch/
118118
[LD-Patch doc]: http://rubydoc.info/github/ruby-rdf/ld-patch

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1.0
1+
3.1.1

etc/doap.ttl

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@base <https://rubygems.org/gems/ld-patch> .
12
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
23
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
34
@prefix dc: <http://purl.org/dc/terms/> .
@@ -8,10 +9,10 @@
89
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
910
@prefix ldp: <https://raw.githubusercontent.com/pchampin/ld-patch-testsuite/master/manifest.ttl#> .
1011

11-
<http://rubygems.org/gems/ld-patch> a doap:Project, earl:TestSubject, earl:Software ;
12+
<> a doap:Project, earl:TestSubject, earl:Software ;
1213
doap:name "LD::Patch" ;
13-
doap:homepage <http://ruby-rdf.github.com/ld-patch> ;
14-
doap:license <http://creativecommons.org/licenses/publicdomain/> ;
14+
doap:homepage <https://ruby-rdf.github.com/ld-patch> ;
15+
doap:license <https://unlicense.org/1.0/> ;
1516
doap:shortdesc "W3C Linked Data Patch Format for RDF.rb."@en ;
1617
doap:description """
1718
Implements the W3C Linked Data Patch Format and operations for RDF.rb.
@@ -22,19 +23,19 @@
2223
doap:implements <http://www.w3.org/TR/ldpatch/> ;
2324
doap:category <http://dbpedia.org/resource/Resource_Description_Framework>,
2425
<http://dbpedia.org/resource/Ruby_(programming_language)> ;
25-
doap:download-page <http://rubygems.org/gems/ld-patch> ;
26-
doap:mailing-list <http://lists.w3.org/Archives/Public/public-rdf-ruby/> ;
27-
doap:bug-database <http://github.com/ruby-rdf/ld-patch/issues> ;
28-
doap:blog <http://greggkellogg.net/> ;
29-
doap:developer <http://greggkellogg.net/foaf#me> ;
30-
doap:maintainer <http://greggkellogg.net/foaf#me> ;
31-
doap:documenter <http://greggkellogg.net/foaf#me> ;
32-
foaf:maker <http://greggkellogg.net/foaf#me> ;
26+
doap:download-page <> ;
27+
doap:mailing-list <https://lists.w3.org/Archives/Public/public-rdf-ruby/> ;
28+
doap:bug-database <https://github.com/ruby-rdf/ld-patch/issues> ;
29+
doap:blog <https://greggkellogg.net/> ;
30+
doap:developer <https://greggkellogg.net/foaf#me> ;
31+
doap:maintainer <https://greggkellogg.net/foaf#me> ;
32+
doap:documenter <https://greggkellogg.net/foaf#me> ;
33+
foaf:maker <https://greggkellogg.net/foaf#me> ;
3334
dc:title "LD::Patch" ;
3435
dc:description """
3536
Implements the W3C Linked Data Patch Format and operations for RDF.rb.
3637
Makes use of the SPARQL gem for performing updates
3738
"""@en ;
3839
dc:date "2015-08-23"^^xsd:date ;
39-
dc:creator <http://greggkellogg.net/foaf#me> ;
40-
dc:isPartOf <http://rubygems.org/gems/rdf> .
40+
dc:creator <https://greggkellogg.net/foaf#me> ;
41+
dc:isPartOf <https://rubygems.org/gems/rdf> .

0 commit comments

Comments
 (0)