Sha256: 4d4ce8fd60a51a9b33ed75bdc2ec2cdaff88f8798c453a03b0d94a199bf281cb

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

require 'rdf'

module RDF
  ##
  # **`RDF::JSON`** is an RDF/JSON plugin for RDF.rb.
  #
  # @example Requiring the `RDF::JSON` module
  #   require 'rdf/json'
  #
  # @example Parsing RDF statements from an RDF/JSON file
  #   RDF::JSON::Reader.open("etc/doap.json") do |reader|
  #     reader.each_statement do |statement|
  #       puts statement.inspect
  #     end
  #   end
  #
  # @example Serializing RDF statements into an RDF/JSON file
  #   RDF::JSON::Writer.open("etc/test.json") do |writer|
  #     graph.each_statement do |statement|
  #       writer << statement
  #     end
  #   end
  #
  # @example Serializing RDF values into RDF/JSON strings
  #   RDF::Node.new('foobar').to_json
  #   RDF::URI.new("http://rdf.rubyforge.org/").to_json
  #   RDF::Literal.new("Hello, world!").to_json
  #   RDF::Literal.new("Hello, world!", :language => 'en-US').to_json
  #   RDF::Literal.new(3.1415).to_json
  #   RDF::Literal.new('true', :datatype => RDF::XSD.boolean).to_json
  #   RDF::Statement.new(s, p, o).to_json
  #
  # @see http://rdf.rubyforge.org/
  # @see http://n2.talis.com/wiki/RDF_JSON_Specification
  # @see http://en.wikipedia.org/wiki/JSON
  #
  # @author [Arto Bendiken](http://ar.to/)
  module JSON
    require 'json'
    require 'rdf/json/extensions'
    require 'rdf/json/format'
    autoload :Reader,  'rdf/json/reader'
    autoload :Writer,  'rdf/json/writer'
    autoload :VERSION, 'rdf/json/version'
  end # module JSON
end # module RDF

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rdf-json-0.2.0 lib/rdf/json.rb
rdf-json-0.1.1 lib/rdf/json.rb
rdf-json-0.1.0 lib/rdf/json.rb