Module: RDF::TriX::Reader::REXML

Defined in:
vendor/bundler/ruby/3.3.0/bundler/gems/rdf-trix-4b113f65db0e/lib/rdf/trix/reader/rexml.rb

Overview

REXML implementation of the TriX reader.

Constant Summary collapse

OPTIONS =
{}.freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.librarySymbol

Returns the name of the underlying XML library.

Returns:



14
15
16
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/rdf-trix-4b113f65db0e/lib/rdf/trix/reader/rexml.rb', line 14

def self.library
  :rexml
end

Instance Method Details

#initialize_xml(input, **options)

This method returns an undefined value.

Initializes the underlying XML library.

Parameters:



23
24
25
26
# File 'vendor/bundler/ruby/3.3.0/bundler/gems/rdf-trix-4b113f65db0e/lib/rdf/trix/reader/rexml.rb', line 23

def initialize_xml(input, **options)
  require 'rexml/document' unless defined?(::REXML)
  @xml = ::REXML::Document.new(input, :compress_whitespace => %w{uri})
end