Skip to content

Commit

Permalink
Fix RDF gem versions to < 3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Aug 4, 2024
1 parent 55afbd0 commit 8686c1c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ source "https://rubygems.org"
gemspec

group :develop do
gem 'rdf-isomorphic', git: "https://github.com/ruby-rdf/rdf-isomorphic", branch: "develop"
gem "rdf-reasoner", git: "https://github.com/ruby-rdf/rdf-reasoner", branch: "develop"
gem "rdf-spec", git: "https://github.com/ruby-rdf/rdf-spec", branch: "develop"
gem "rdf-turtle", git: "https://github.com/ruby-rdf/rdf-turtle", branch: "develop"
gem "rdf-vocab", git: "https://github.com/ruby-rdf/rdf-vocab", branch: "develop"
gem "rdf-xsd", git: "https://github.com/ruby-rdf/rdf-xsd", branch: "develop"
#gem 'rdf-isomorphic', git: "https://github.com/ruby-rdf/rdf-isomorphic", branch: "develop"
#gem "rdf-reasoner", git: "https://github.com/ruby-rdf/rdf-reasoner", branch: "develop"
#gem "rdf-spec", git: "https://github.com/ruby-rdf/rdf-spec", branch: "develop"
#gem "rdf-turtle", git: "https://github.com/ruby-rdf/rdf-turtle", branch: "develop"
#gem "rdf-vocab", git: "https://github.com/ruby-rdf/rdf-vocab", branch: "develop"
#gem "rdf-xsd", git: "https://github.com/ruby-rdf/rdf-xsd", branch: "develop"

gem "ebnf", git: "https://github.com/dryruby/ebnf", branch: "develop"
#gem "ebnf", git: "https://github.com/dryruby/ebnf", branch: "develop"
gem "sxp", git: "https://github.com/dryruby/sxp", branch: "develop"

gem 'rest-client-components'
Expand Down
8 changes: 4 additions & 4 deletions rdf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ Gem::Specification.new do |gem|
gem.required_ruby_version = '>= 2.6'
gem.requirements = []
gem.add_runtime_dependency 'link_header', '~> 0.0', '>= 0.0.8'
gem.add_development_dependency 'rdf-spec', '~> 3.2'
gem.add_development_dependency 'rdf-turtle', '~> 3.2'
gem.add_development_dependency 'rdf-vocab', '~> 3.2'
gem.add_development_dependency 'rdf-xsd', '~> 3.2', '>= 3.2.1'
gem.add_development_dependency 'rdf-spec', '~> 3.2', '< 3.3'
gem.add_development_dependency 'rdf-turtle', '~> 3.2', '< 3.3'
gem.add_development_dependency 'rdf-vocab', '~> 3.2', '< 3.3'
gem.add_development_dependency 'rdf-xsd', '~> 3.2', '>= 3.2.1', '< 3.3'
gem.add_development_dependency 'rest-client', '~> 2.1'
gem.add_development_dependency 'rspec', '~> 3.12'
gem.add_development_dependency 'rspec-its', '~> 1.3'
Expand Down

0 comments on commit 8686c1c

Please sign in to comment.