File tree Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Expand file tree Collapse file tree 4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,11 @@ jobs:
1818 runs-on : ubuntu-latest
1919 env :
2020 CI : true
21+ ALLOW_FAILURES : ${{ endsWith(matrix.ruby, 'head') }}
2122 strategy :
2223 fail-fast : false
2324 matrix :
2425 ruby :
25- - 2.4
26- - 2.5
2726 - 2.6
2827 - 2.7
2928 - 3.0
3938 - name : Install dependencies
4039 run : bundle install --jobs 4 --retry 3
4140 - name : Run tests
42- run : bundle exec rspec spec
43-
41+ run : ruby --version; bundle exec rspec spec || $ALLOW_FAILURES
Original file line number Diff line number Diff line change @@ -12,8 +12,8 @@ This gem uses the preloading capabilities in `JSON::LD::Context` to create ruby
1212
1313Contexts are taken from https://github.com/json-ld/json-ld.org/wiki/existing-contexts :
1414
15- * [ Linked Open Vocabularies (LOV)] ( http ://lov.okfn.org /dataset/lov/)
16- * http://lov.okfn.org /dataset/lov/context
15+ * [ Linked Open Vocabularies (LOV)] ( https ://lov.linkeddata.es /dataset/lov/)
16+ * http://lov.linkeddata.es /dataset/lov/context
1717* [ Schema.org] ( http://schema.org )
1818 * http://schema.org (needs content negotiation)
1919* [ Hydra] ( http://www.hydra-cg.com/spec/latest/core/ )
@@ -52,8 +52,8 @@ Contexts are taken from https://github.com/json-ld/json-ld.org/wiki/existing-con
5252 * https://www.w3.org/ns/csvw
5353
5454## Dependencies
55- * [ Ruby] ( https://ruby-lang.org/ ) (>= 2.4 )
56- * [ JSON::LD] ( https://rubygems.org/gems/json-ld ) (>= 3.1 )
55+ * [ Ruby] ( https://ruby-lang.org/ ) (>= 2.6 )
56+ * [ JSON::LD] ( https://rubygems.org/gems/json-ld ) (>= 3.2 )
5757
5858## Mailing List
5959* < https://lists.w3.org/Archives/Public/public-rdf-ruby/ >
Original file line number Diff line number Diff line change 1- 3.1.6
1+ 3.2.0
Original file line number Diff line number Diff line change @@ -19,10 +19,10 @@ Gem::Specification.new do |gem|
1919 gem . require_paths = %w( lib )
2020 gem . test_files = Dir . glob ( 'spec/**/*.rb' ) + Dir . glob ( 'spec/test-files/*' )
2121
22- gem . required_ruby_version = '>= 2.4 '
22+ gem . required_ruby_version = '>= 2.6 '
2323 gem . requirements = [ ]
24- gem . add_runtime_dependency 'rdf' , '~> 3.1 '
25- gem . add_runtime_dependency 'json-ld' , '~> 3.1 '
24+ gem . add_runtime_dependency 'rdf' , '~> 3.2 '
25+ gem . add_runtime_dependency 'json-ld' , '~> 3.2 '
2626 gem . add_development_dependency 'rspec' , '~> 3.10'
2727 gem . add_development_dependency 'yard' , '~> 0.9'
2828
You can’t perform that action at this time.
0 commit comments