Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
nokogiri / lib / nokogiri / xml / xpath / syntax_error.rb
Size: Mime:
module Nokogiri
  module XML
    class XPath
      class SyntaxError < XML::SyntaxError
        def to_s
          [super.chomp, str1].compact.join(': ')
        end
      end
    end
  end
end