-
Notifications
You must be signed in to change notification settings - Fork 11
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
5 changed files
with
37 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.2.1 | ||
1.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
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 |
---|---|---|
|
@@ -10,6 +10,13 @@ Gem::Specification.new do |gem| | |
gem.license = 'Unlicense' | ||
gem.summary = 'A pure-Ruby implementation of a universal S-expression parser.' | ||
gem.description = 'Universal S-expression parser with specific support for Common Lisp, Scheme, and RDF/SPARQL' | ||
gem.metadata = { | ||
"documentation_uri" => "https://dryruby.github.io/sxp", | ||
"bug_tracker_uri" => "https://github.com/dryruby/sxp/issues", | ||
"homepage_uri" => "https://github.com/dryruby/sxp", | ||
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/", | ||
"source_code_uri" => "https://github.com/dryruby/sxp", | ||
} | ||
|
||
gem.author = ['Arto Bendiken', 'Gregg Kellogg'] | ||
gem.email = ['[email protected]', '[email protected]'] | ||
|