Skip to content

Commit c5b8c3e

Browse files
committed
Update URLs to use HTTPS, where possible.
1 parent 074126c commit c5b8c3e

6 files changed

Lines changed: 15 additions & 15 deletions

File tree

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 git@github.com: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

ld-patch.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
66
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
77

88
gem.name = "ld-patch"
9-
gem.homepage = "http://github.com/ruby-rdf/ld-patch"
9+
gem.homepage = "https://github.com/ruby-rdf/ld-patch"
1010
gem.license = 'Unlicense'
1111
gem.summary = "W3C Linked Data Patch Format for RDF.rb."
1212

lib/ld/patch/format.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def self.cli_commands
3131
end
3232
raise ArgumentError, "Patching requires a patch or reference to patch resource" unless opts[:patch_input]
3333
opts[:logger].info "Patch"
34-
patch = LD::Patch.parse(opts[:patch_input], base_uri: opts.fetch(:patch_file, "http://rubygems.org/gems/ld-patch"))
34+
patch = LD::Patch.parse(opts[:patch_input], base_uri: opts.fetch(:patch_file, "https://rubygems.org/gems/ld-patch"))
3535
opts[:messages][:reasoner] = {"S-Expression": [patch.to_sse]} if opts[:to_sxp]
3636
RDF::CLI.repository.query(patch)
3737
end,

script/tc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN_TIME = Time.now
1616
def earl_preamble(options)
1717
options[:output].write File.read(File.expand_path("../../etc/doap.ttl", __FILE__))
1818
options[:output].puts %(
19-
<> foaf:primaryTopic <http://rubygems.org/gems/ld-patch> ;
19+
<> foaf:primaryTopic <https://rubygems.org/gems/ld-patch> ;
2020
dc:issued "#{RUN_TIME.xmlschema}"^^xsd:dateTime ;
2121
foaf:maker <#{ASSERTOR}> .
2222
@@ -74,7 +74,7 @@ def run_tc(t, options)
7474
options[:output].puts %{
7575
[ a earl:Assertion;
7676
earl:assertedBy <#{ASSERTOR}>;
77-
earl:subject <http://rubygems.org/gems/ld-patch>;
77+
earl:subject <https://rubygems.org/gems/ld-patch>;
7878
earl:test <#{test}>;
7979
earl:result [
8080
a earl:TestResult;

0 commit comments

Comments
 (0)