Skip to content

Commit

Permalink
Update documentation, dependencies, and version sync for 3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Dec 13, 2021
1 parent 98b60c5 commit 915e079
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,11 @@ jobs:
runs-on: ubuntu-latest
env:
CI: true
ALLOW_FAILURES: ${{ endsWith(matrix.ruby, 'head') }}
strategy:
fail-fast: false
matrix:
ruby:
- 2.4
- 2.5
- 2.6
- 2.7
- 3.0
Expand All @@ -39,5 +38,4 @@ jobs:
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run tests
run: bundle exec rspec spec

run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ This gem uses the preloading capabilities in `JSON::LD::Context` to create ruby

Contexts are taken from https://github.com/json-ld/json-ld.org/wiki/existing-contexts:

* [Linked Open Vocabularies (LOV)](http://lov.okfn.org/dataset/lov/)
* http://lov.okfn.org/dataset/lov/context
* [Linked Open Vocabularies (LOV)](https://lov.linkeddata.es/dataset/lov/)
* http://lov.linkeddata.es/dataset/lov/context
* [Schema.org](http://schema.org)
* http://schema.org (needs content negotiation)
* [Hydra](http://www.hydra-cg.com/spec/latest/core/)
Expand Down Expand Up @@ -52,8 +52,8 @@ Contexts are taken from https://github.com/json-ld/json-ld.org/wiki/existing-con
* https://www.w3.org/ns/csvw

## Dependencies
* [Ruby](https://ruby-lang.org/) (>= 2.4)
* [JSON::LD](https://rubygems.org/gems/json-ld) (>= 3.1)
* [Ruby](https://ruby-lang.org/) (>= 2.6)
* [JSON::LD](https://rubygems.org/gems/json-ld) (>= 3.2)

## Mailing List
* <https://lists.w3.org/Archives/Public/public-rdf-ruby/>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.6
3.2.0
6 changes: 3 additions & 3 deletions json-ld-preloaded.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ Gem::Specification.new do |gem|
gem.require_paths = %w(lib)
gem.test_files = Dir.glob('spec/**/*.rb') + Dir.glob('spec/test-files/*')

gem.required_ruby_version = '>= 2.4'
gem.required_ruby_version = '>= 2.6'
gem.requirements = []
gem.add_runtime_dependency 'rdf', '~> 3.1'
gem.add_runtime_dependency 'json-ld', '~> 3.1'
gem.add_runtime_dependency 'rdf', '~> 3.2'
gem.add_runtime_dependency 'json-ld', '~> 3.2'
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'yard' , '~> 0.9'

Expand Down

0 comments on commit 915e079

Please sign in to comment.