Sha256: a911edd6bf8d186c2394175e395832d11ba26554717fddf2b176860210c9d0a0

Contents?: true

Size: 920 Bytes

Versions: 1

Compression:

Stored size: 920 Bytes

Contents

module RDF::JSON
  ##
  # RDF/JSON format specification.
  #
  # @example Loading RDF/JSON format support
  #   require 'rdf/json'
  #
  # @example Obtaining an RDF/JSON format class
  #   RDF::Format.for(:rj)         #=> RDF::JSON::Format
  #   RDF::Format.for("etc/doap.rj")
  #   RDF::Format.for(:file_name      => "etc/doap.rj")
  #   RDF::Format.for(:file_extension => "rj")
  #   RDF::Format.for(:content_type   => "application/rdf+json")
  #
  # @see http://n2.talis.com/wiki/RDF_JSON_Specification
  class Format < RDF::Format
    content_type     'application/rdf+json',
                     extension: :rj,
                     uri: 'http://www.w3.org/ns/formats/RDF_JSON'
    content_encoding 'utf-8'

    reader { RDF::JSON::Reader }
    writer { RDF::JSON::Writer }

    ##
     # Override normal symbol generation
     def self.to_sym
       :rj
     end

    require 'json'
  end # Format
end # RDF::JSON

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rdf-json-3.3.0 lib/rdf/json/format.rb