Sha256: f3c91354bb5f2235666da65e2e4233282d4860f2528474878b3c3e9d0b93eadd
Contents?: true
Size: 1010 Bytes
Versions: 1
Compression:
Stored size: 1010 Bytes
Contents
require 'rdf' module RDF ## # **`RDF::JSON`** is an RDF/JSON plugin for RDF.rb. # # Dependencies # ------------ # # * [RDF.rb](http://gemcutter.org/gems/rdf) (>= 0.0.9) # * [JSON](http://gemcutter.org/gems/json_pure) (>= 1.2.0) # # Installation # ------------ # # The recommended installation method is via RubyGems. To install the latest # official release from Gemcutter, do: # # % [sudo] gem install rdf-json # # Documentation # ------------- # # * {RDF::JSON::Format} # * {RDF::JSON::Reader} # * {RDF::JSON::Writer} # # @example Requiring the `RDF::JSON` module # require 'rdf/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 'rdf/json/format' autoload :Reader, 'rdf/json/reader' autoload :Writer, 'rdf/json/writer' autoload :VERSION, 'rdf/json/version' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rdf-json-0.0.0 | lib/rdf/json.rb |