Skip to content

Commit

Permalink
Update dependencies and gemspec deprecations.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Aug 7, 2018
1 parent 8ac4437 commit 2f348de
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 16 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
@@ -1,12 +1,14 @@
language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
before_install: "gem update --system"
env:
- CI=true
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- jruby-9
- rbx-3
cache: bundler
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -3,7 +3,7 @@ source "http://rubygems.org"
gemspec

gem 'rdf', github: "ruby-rdf/rdf", branch: "develop"
gem 'ebnf', github: "gkellogg/ebnf", branch: "develop"
gem 'ebnf', github: "dryruby/ebnf", branch: "develop"

group :debug do
gem "byebug", platforms: :mri
Expand Down
10 changes: 5 additions & 5 deletions README.md
Expand Up @@ -74,11 +74,11 @@ The parser takes branch and follow tables generated from the [LD Patch Grammar](
## Dependencies

* [Ruby](http://ruby-lang.org/) (>= 2.2.2)
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 2.0)
* [EBNF][] (~> 1.0)
* [SPARQL][] (~> 2.0)
* [SXP][] (~> 0.1.6)
* [RDF::XSD][] (~> 2.0)
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 3.0)
* [EBNF][] (~> 1.1)
* [SPARQL][] (~> 3.0)
* [SXP][] (~> 1.0)
* [RDF::XSD][] (~> 3.0)

## Mailing List
* <http://lists.w3.org/Archives/Public/public-rdf-ruby/>
Expand Down
15 changes: 5 additions & 10 deletions ld-patch.gemspec
Expand Up @@ -16,27 +16,22 @@ Gem::Specification.new do |gem|
gem.platform = Gem::Platform::RUBY
gem.files = %w(AUTHORS README.md LICENSE VERSION bin/ldpatch) + Dir.glob('lib/**/*.rb')
gem.require_paths = %w(lib)
gem.has_rdoc = false
gem.description = %(
Implements the W3C Linked Data Patch Format and operations for RDF.rb.
Makes use of the SPARQL gem for performing updates.)

gem.required_ruby_version = '>= 2.2.2'
gem.requirements = []
#gem.add_runtime_dependency 'rdf', '~> 3.0'
gem.add_runtime_dependency 'rdf', '>= 2.2', '< 4.0'
gem.add_runtime_dependency 'rdf', '~> 3.0'
gem.add_runtime_dependency 'ebnf', '~> 1.1'
#gem.add_runtime_dependency 'sparql', '~> 3.0'
gem.add_runtime_dependency 'sparql', '>= 2.2', '< 4.0'
gem.add_runtime_dependency 'sparql', '~> 3.0'
gem.add_runtime_dependency 'sxp', '~> 1.0'
#gem.add_runtime_dependency 'rdf-xsd', '~> 3.0'
gem.add_runtime_dependency 'rdf-xsd', '>= 2.2', '< 4.0'
gem.add_runtime_dependency 'rdf-xsd', '~> 3.0'

#gem.add_development_dependency 'json-ld', '~> 2.0'
#gem.add_development_dependency 'json-ld', '~> 3.0'
gem.add_development_dependency 'json-ld', '>= 2.1', '< 4.0'
gem.add_development_dependency 'rack', '~> 1.6'
#gem.add_development_dependency 'rdf-spec', '~> 2.0'
gem.add_development_dependency 'rdf-spec', '>= 2.2', '< 4.0'
gem.add_development_dependency 'rdf-spec', '~> 3.0'
gem.add_development_dependency 'open-uri-cached', '~> 0.0', '>= 0.0.5'
gem.add_development_dependency 'rspec', '~> 3.7'
gem.add_development_dependency 'rspec-its', '~> 1.2'
Expand Down

0 comments on commit 2f348de

Please sign in to comment.