Skip to content

Commit

Permalink
Finish 2.2.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Oct 8, 2017
2 parents 9c9e551 + 42fbb99 commit 6a0249a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ source "https://rubygems.org"
gemspec

group :develop do
gem 'rdf-isomorphic', github: "ruby-rdf/rdf-isomorphic", branch: "develop"
gem "rdf-reasoner", github: "ruby-rdf/rdf-reasoner", branch: "develop"
gem "rdf-spec", github: "ruby-rdf/rdf-spec", branch: "develop"
gem "rdf-turtle", github: "ruby-rdf/rdf-turtle", branch: "develop"
gem "rdf-vocab", github: "ruby-rdf/rdf-vocab", branch: "develop"
gem "rdf-xsd", github: "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 'rest-client-components'
gem 'benchmark-ips'
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.2.10
2.2.11
3 changes: 2 additions & 1 deletion lib/rdf/writer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,7 @@ def flush
# @return [self]
# @abstract
def write_prologue
@logged_errors_at_prolog = log_statistics[:error].to_i
self
end

Expand All @@ -408,7 +409,7 @@ def write_prologue
# @raise [RDF::WriterError] if errors logged during processing.
# @abstract
def write_epilogue
if log_statistics[:error]
if log_statistics[:error].to_i > @logged_errors_at_prolog
raise RDF::WriterError, "Errors found during processing"
end
self
Expand Down

0 comments on commit 6a0249a

Please sign in to comment.