Sha256: b84f6d2828cad1cc27559381cd26ef4eb82872ccf3d74c5ded2d608bbabef895

Contents?: true

Size: 334 Bytes

Versions: 1

Compression:

Stored size: 334 Bytes

Contents

module RDF::JSON
  ##
  # RDF/JSON format specification.
  #
  # @see http://n2.talis.com/wiki/RDF_JSON_Specification
  class Format < RDF::Format
    content_type     'application/json', :extension => :json
    content_encoding 'utf-8'

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

    require 'json'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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