Sha256: fe838647a6b79a185c4423ab915241128d4c4aded554f08a5626f3716e8ca52a
Contents?: true
Size: 626 Bytes
Versions: 20
Compression:
Stored size: 626 Bytes
Contents
module RDF::NTriples ## # N-Triples format specification. # # @example Obtaining an NTriples format class # RDF::Format.for(:ntriples) #=> RDF::NTriples::Format # RDF::Format.for("etc/doap.nt") # RDF::Format.for(:file_name => "etc/doap.nt") # RDF::Format.for(:file_extension => "nt") # RDF::Format.for(:content_type => "text/plain") # # @see http://www.w3.org/TR/rdf-testcases/#ntriples class Format < RDF::Format content_type 'text/plain', :extension => :nt content_encoding 'ascii' reader { RDF::NTriples::Reader } writer { RDF::NTriples::Writer } end end
Version data entries
20 entries across 20 versions & 1 rubygems