Skip to content

Commit

Permalink
Finish 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Jul 23, 2023
2 parents 8ebf6df + 9a176c3 commit b729bcf
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 16 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.7
- 3.1
- ruby-head
- jruby
ruby: [2.6, 2.7, '3.0', 3.1, 3.2, ruby-head, jruby]
steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/generate-docs.yml
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Sinatra.

* <https://github.com/ruby-rdf/rack-linkeddata>

[![Gem Version](https://badge.fury.io/rb/rack-linkeddata.png)](https://badge.fury.io/rb/rack-linkeddata)
[![Gem Version](https://badge.fury.io/rb/rack-linkeddata.svg)](https://badge.fury.io/rb/rack-linkeddata)
[![Build Status](https://github.com/ruby-rdf/rack-linkeddata/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/rack-linkeddata/actions?query=workflow%3ACI)
[![Gitter chat](https://badges.gitter.im/ruby-rdf/rdf.png)](https://gitter.im/ruby-rdf/rdf)

Expand Down Expand Up @@ -92,7 +92,7 @@ for N-Triples, N-Quads, Turtle, RDF/XML, RDF/JSON, JSON-LD, RDFa, TriG and TriX.

##Documentation

<https://rubydoc.info/github/ruby-rdf/rack-linkeddata/>
<https://ruby-rdf.github.io/rack-linkeddata/>

* {Rack::LinkedData}
* {Rack::LinkedData::ContentNegotiation}
Expand Down Expand Up @@ -157,7 +157,7 @@ This is free and unencumbered public domain software. For more information,
see <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.

[Rack]: https://rack.github.com/
[RDF.rb]: https://ruby-rdf.github.com/rdf/
[RDF.rb]: https://ruby-rdf.github.io/rdf/
[Linked Data]: https://linkeddata.org/
[conneg]: https://en.wikipedia.org/wiki/Content_negotiation
[YARD]: https://yardoc.org/
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.1
3.2.2
17 changes: 12 additions & 5 deletions rack-linkeddata.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ Gem::Specification.new do |gem|
gem.license = 'Unlicense'
gem.summary = 'Linked Data content negotiation for Rack applications.'
gem.description = 'Rack middleware for Linked Data content negotiation.'
gem.metadata = {
"documentation_uri" => "https://ruby-rdf.github.io/rack-linkeddata",
"bug_tracker_uri" => "https://github.com/ruby-rdf/rack-linkeddata/issues",
"homepage_uri" => "https://github.com/ruby-rdf/rack-linkeddata",
"mailing_list_uri" => "https://lists.w3.org/Archives/Public/public-rdf-ruby/",
"source_code_uri" => "https://github.com/ruby-rdf/rack-linkeddata",
}

gem.authors = ['Arto Bendiken', 'Gregg Kellogg']
gem.email = '[email protected]'
Expand All @@ -20,12 +27,12 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = '>= 2.6'
gem.requirements = []
gem.add_runtime_dependency 'linkeddata', '~> 3.2'
gem.add_runtime_dependency 'rack-rdf', '~> 3.2'
gem.add_runtime_dependency 'rack', '~> 2.1'
gem.add_runtime_dependency 'linkeddata', '~> 3.2', '>= 3.2.2'
gem.add_runtime_dependency 'rack-rdf', '~> 3.2', '>= 3.2.3'
gem.add_runtime_dependency 'rack', '~> 3.0'

gem.add_development_dependency 'yard' , '~> 0.9'
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'rack-test', '~> 1.1'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'rack-test', '~> 2.1'
gem.post_install_message = nil
end

0 comments on commit b729bcf

Please sign in to comment.