Skip to content

Commit

Permalink
Finish 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Sep 1, 2023
2 parents 64fe387 + 89c9016 commit 288e330
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 27 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Expand Up @@ -19,16 +19,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby:
- 2.6
- 2.7
- "3.0"
- 3.1
- ruby-head
- jruby
ruby: ['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
2 changes: 1 addition & 1 deletion .github/workflows/generate-docs.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Update gh-pages with docs
steps:
- name: Clone repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
3 changes: 1 addition & 2 deletions Gemfile
Expand Up @@ -8,7 +8,6 @@ gem 'json-ld-preloaded',git: "https://github.com/ruby-rdf/json-ld-preloaded", br

group :development, :test do
gem 'ebnf', git: "https://github.com/dryruby/ebnf", branch: "develop"
#gem 'linkeddata', git: "https://github.com/ruby-rdf/linkeddata", branch: "develop"
gem 'rdf-aggregate-repo', git: "https://github.com/ruby-rdf/rdf-aggregate-repo", branch: "develop"
gem 'rdf-rdfa', git: "https://github.com/ruby-rdf/rdf-rdfa", branch: "develop"
gem 'rdf-isomorphic', git: "https://github.com/ruby-rdf/rdf-isomorphic", branch: "develop"
Expand All @@ -19,7 +18,7 @@ group :development, :test do
gem 'sparql', git: "https://github.com/ruby-rdf/sparql", branch: "develop"
gem 'sparql-client', git: "https://github.com/ruby-rdf/sparql-client", branch: "develop"
gem 'sxp', git: "https://github.com/dryruby/sxp.rb", branch: "develop"
gem 'simplecov', '~> 0.21', platforms: :mri
gem 'simplecov', '~> 0.22', platforms: :mri
gem 'simplecov-lcov', '~> 0.8', platforms: :mri
end

Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -2,7 +2,7 @@

This is a pure-Ruby library for working with the [Shape Expressions Language][ShExSpec] to validate the shape of [RDF][] graphs.

[![Gem Version](https://badge.fury.io/rb/shex.png)](https://badge.fury.io/rb/shex)
[![Gem Version](https://badge.fury.io/rb/shex.svg)](https://badge.fury.io/rb/shex)
[![Build Status](https://github.com/ruby-rdf/shex/workflows/CI/badge.svg?branch=develop)](https://github.com/ruby-rdf/shex/actions?query=workflow%3ACI)
[![Coverage Status](https://coveralls.io/repos/ruby-rdf/shex/badge.svg?branch=develop)](https://coveralls.io/github/ruby-rdf/shex?branch=develop)
[![Gitter chat](https://badges.gitter.im/ruby-rdf/rdf.png)](https://gitter.im/ruby-rdf/rdf)
Expand Down Expand Up @@ -200,9 +200,9 @@ The parser uses the executable [S-Expressions][] generated from the EBNF ShExC g

## Dependencies

* [Ruby](https://ruby-lang.org/) (>= 2.6)
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.2)
* [SPARQL gem](https://rubygems.org/gems/sparql) (~> 3.1)
* [Ruby](https://ruby-lang.org/) (>= 3.0)
* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.3)
* [SPARQL gem](https://rubygems.org/gems/sparql) (~> 3.3)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.7.1
0.8.0
1 change: 1 addition & 0 deletions etc/specNotes.md
Expand Up @@ -39,6 +39,7 @@

## 4.6.1 Inclusion Requirement
* ShExJ version of example should use `EachOf` instead of `ShapeAnd`, as it's wrapped in `Shape`.

## 4.7 Semantic Actions
* Shape uses `ex:p1`, but data uses `<http://a.example/p1>`.
* What do to for Test action with no argument?
Expand Down
22 changes: 11 additions & 11 deletions shex.gemspec
Expand Up @@ -26,21 +26,21 @@ Gem::Specification.new do |gem|
gem.require_paths = %w(lib)
gem.metadata["yard.run"] = "yri" # use "yard" to build full HTML docs.

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 'json-ld', '~> 3.2'
gem.add_runtime_dependency 'json-ld-preloaded','~> 3.2'
gem.add_runtime_dependency 'ebnf', '~> 2.2'
gem.add_runtime_dependency 'sxp', '~> 1.2'
gem.add_runtime_dependency 'rdf-xsd', '~> 3.2'
gem.add_runtime_dependency 'sparql', '~> 3.2'
gem.add_runtime_dependency 'rdf', '~> 3.3'
gem.add_runtime_dependency 'json-ld', '~> 3.3'
gem.add_runtime_dependency 'json-ld-preloaded','~> 3.3'
gem.add_runtime_dependency 'ebnf', '~> 2.4'
gem.add_runtime_dependency 'sxp', '~> 1.3'
gem.add_runtime_dependency 'rdf-xsd', '~> 3.3'
gem.add_runtime_dependency 'sparql', '~> 3.3'
gem.add_runtime_dependency 'htmlentities','~> 4.3'
gem.add_development_dependency 'erubis', '~> 2.7'

gem.add_development_dependency 'rdf-spec', '~> 3.2'
gem.add_development_dependency 'rdf-turtle', '~> 3.2'
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'rdf-spec', '~> 3.3'
gem.add_development_dependency 'rdf-turtle', '~> 3.3'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'rspec-its', '~> 1.3'
gem.add_development_dependency 'yard', '~> 0.9'

Expand Down

0 comments on commit 288e330

Please sign in to comment.