Skip to content

Commit

Permalink
Finish 2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Apr 1, 2017
2 parents 38be53f + 44e95c5 commit 9e289f4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.5
- 2.3.1
- jruby
- rbx
- 2.2
- 2.3
- 2.4
- jruby-9
- rbx-3
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby

- rvm: jruby-9
- rvm: rbx-3
dist: trusty
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.2.0
5 changes: 3 additions & 2 deletions lib/rdf/aggregate_repo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,9 @@ def named(name)
# @see RDF::Enumerable#supports?
def supports?(feature)
case feature.to_sym
when :graph_name then @options[:with_graph_name]
when :validity then @options.fetch(:with_validity, true)
when :graph_name then @options[:with_graph_name]
when :validity then @options.fetch(:with_validity, true)
when :literal_equality then sources.all? {|s| s.supports?(:literal_equality)}
else false
end
end
Expand Down

0 comments on commit 9e289f4

Please sign in to comment.