Skip to content

Commit afd2f4f

Browse files
committed
Require Ruby >= 2.2.2.
Remove wirble from Gemfile, as dependency-ci objects that it has no license and it's not really neccessary.
1 parent ad86623 commit afd2f4f

4 files changed

Lines changed: 8 additions & 11 deletions

File tree

.travis.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ script: "bundle exec rspec spec"
44
env:
55
- CI=true
66
rvm:
7-
- 2.0
8-
- 2.1
9-
- 2.2.4
10-
- 2.3.0
11-
- jruby-9.0.4.0
12-
- rbx-2
7+
- 2.2.5
8+
- 2.3.1
9+
- jruby-9.1.2.0
10+
- rbx
1311
cache: bundler
1412
sudo: false
1513
matrix:
1614
allow_failures:
17-
- rvm: rbx-2
15+
- rvm: rbx

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ gem 'rdf', github: "ruby-rdf/rdf", branch: "develop"
66
gem 'ebnf', github: "gkellogg/ebnf", branch: "develop"
77

88
group :debug do
9-
gem "wirble"
109
gem "byebug", platforms: :mri
1110
end
1211

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ This gem implements the [LD Patch][] specification with a couple of changes and/
2424
* 100% free and unencumbered [public domain](http://unlicense.org/) software.
2525
* Complete [Linked Data Patch Format][LD Patch] parsing and execution
2626
* Implementation Report: {file:etc/earl.html EARL}
27-
* Compatible with Ruby >= 2.0.0.
27+
* Compatible with Ruby >= 2.2.2.
2828

2929
## Documentation
3030
Full documentation available on [Rubydoc.info][LD-Patch doc]
@@ -60,7 +60,7 @@ The parser takes branch and follow tables generated from the [LD Patch Grammar](
6060

6161
## Dependencies
6262

63-
* [Ruby](http://ruby-lang.org/) (>= 2.0.0)
63+
* [Ruby](http://ruby-lang.org/) (>= 2.2.2)
6464
* [RDF.rb](http://rubygems.org/gems/rdf) (~> 2.0)
6565
* [EBNF][] (~> 1.0)
6666
* [SPARQL][] (~> 2.0)

ld-patch.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Gem::Specification.new do |gem|
2222
Implements the W3C Linked Data Patch Format and operations for RDF.rb.
2323
Makes use of the SPARQL gem for performing updates.)
2424

25-
gem.required_ruby_version = '>= 2.0.0'
25+
gem.required_ruby_version = '>= 2.2.2'
2626
gem.requirements = []
2727
gem.add_runtime_dependency 'rdf', '~> 2.0'
2828
gem.add_runtime_dependency 'ebnf', '~> 1.0', '>= 1.0.1'

0 commit comments

Comments
 (0)