-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
167 changed files
with
66,922 additions
and
40,907 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.2.1 | ||
3.2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env ruby | ||
# frozen_string_literal: true | ||
|
||
require "bundler/setup" | ||
require "sparql" | ||
|
||
require "irb" | ||
require 'amazing_print' | ||
IRB.start(__FILE__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,10 @@ | |
|
||
<https://rubygems.org/gems/sparql> a doap:Project; | ||
doap:name "Ruby SPARQL"; | ||
doap:shortdesc "SPARQL library for Ruby."@en; | ||
doap:description "SPARQL Implements SPARQL 1.1 Query, Update and result formats for the Ruby RDF.rb library suite."@en; | ||
doap:shortdesc "SPARQL Query and Update library for Ruby."@en; | ||
doap:description "SPARQL Implements SPARQL 1.1 Query, Update, Protocol and result formats for the Ruby RDF.rb library suite."@en; | ||
doap:implements <https://www.w3.org/TR/sparql11-query/>, | ||
<https://www.w3.org/TR/sparql11-protocol/>, | ||
<https://www.w3.org/TR/sparql11-update/>, | ||
<https://www.w3.org/TR/sparql11-results-json/>, | ||
<https://www.w3.org/TR/sparql11-results-csv-tsv/>, | ||
|
@@ -33,14 +34,15 @@ | |
|
||
<https://greggkellogg.net/foaf#me> a foaf:Person; | ||
foaf:homepage <https://greggkellogg.net/>; | ||
foaf:made <>; | ||
foaf:mbox <mailto:[email protected]>; | ||
foaf:mbox_sha1sum "35bc44e6d0070e5ad50ccbe0d24403c96af2b9bd"; | ||
foaf:name "Gregg Kellogg" . | ||
|
||
<https://ar.to/#self> a foaf:Person; | ||
foaf:homepage <https://ar.to/>; | ||
foaf:made <>; | ||
foaf:mbox <mailto:arto[email protected]>; | ||
foaf:mbox <mailto:arto@bendiken.net>; | ||
foaf:mbox_sha1sum "a033f652c84a4d73b8c26d318c2395699dd2bdfb", | ||
"d0737cceb55eb7d740578d2db1bc0727e3ed49ce"; | ||
foaf:name "Arto Bendiken" . |
Oops, something went wrong.