-
Notifications
You must be signed in to change notification settings - Fork 5
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
7 changed files
with
53 additions
and
25 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
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@v3 | ||
- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.8.0 | ||
0.9.0 |
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 |
---|---|---|
|
@@ -9,6 +9,13 @@ Gem::Specification.new do |gem| | |
gem.homepage = "https://github.com/ruby-rdf/rdf-reasoner" | ||
gem.license = 'Unlicense' | ||
gem.summary = "RDFS/OWL Reasoner for RDF.rb" | ||
gem.metadata = { | ||
"documentation_uri" => "https://ruby-rdf.github.io/rdf-reasoner", | ||
"bug_tracker_uri" => "https://github.com/ruby-rdf/rdf-reasoner/issues", | ||
"homepage_uri" => "https://github.com/ruby-rdf/rdf-reasoner", | ||
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/", | ||
"source_code_uri" => "https://github.com/ruby-rdf/rdf-reasoner", | ||
} | ||
|
||
gem.authors = ['Gregg Kellogg'] | ||
gem.email = '[email protected]' | ||
|
@@ -23,17 +30,17 @@ Gem::Specification.new do |gem| | |
the vocabulary ruleset. This can be used to implement | ||
SPARQL Entailment Regimes.).gsub(/\s+/m, ' ') | ||
|
||
gem.required_ruby_version = '>= 2.6' | ||
gem.required_ruby_version = '>= 3.0' | ||
gem.requirements = [] | ||
gem.add_runtime_dependency 'rdf', '~> 3.2' | ||
gem.add_runtime_dependency 'rdf-xsd', '~> 3.2' | ||
gem.add_runtime_dependency 'rdf', '~> 3.3' | ||
gem.add_runtime_dependency 'rdf-xsd', '~> 3.3' | ||
|
||
gem.add_development_dependency 'rdf-spec', '~> 3.2' | ||
gem.add_development_dependency 'rdf-vocab', '~> 3.2' | ||
gem.add_development_dependency 'rdf-turtle', '~> 3.2' | ||
gem.add_development_dependency 'json-ld', '~> 3.2' | ||
gem.add_development_dependency 'rdf-spec', '~> 3.3' | ||
gem.add_development_dependency 'rdf-vocab', '~> 3.3' | ||
gem.add_development_dependency 'rdf-turtle', '~> 3.3' | ||
gem.add_development_dependency 'json-ld', '~> 3.3' | ||
gem.add_development_dependency 'equivalent-xml', '~> 0.6' | ||
gem.add_development_dependency 'rspec', '~> 3.10' | ||
gem.add_development_dependency 'rspec', '~> 3.12' | ||
gem.add_development_dependency 'yard' , '~> 0.9' | ||
gem.post_install_message = nil | ||
end |