Sha256: e94db3b8daf76f8c6597f7bbd64ff4128a04fc2e875c5ee431fca755543a69ee
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
Contents
require 'rdf' module RDF ## # **`RDF::Sesame`** is a Sesame 2.0 adapter for RDF.rb. # # Dependencies # ------------ # # * [RDF.rb](http://rdf.rubyforge.org/) (>= 0.0.6) # * [JSON](http://flori.github.com/json/) (>= 1.2.0) # # Installation # ------------ # # The recommended installation method is via RubyGems. To install the latest # official release from Gemcutter, do: # # % [sudo] gem install rdf-sesame # # Documentation # ------------- # # * {RDF::Sesame::Connection} # * {RDF::Sesame::Repository} # * {RDF::Sesame::Server} # # @example Requiring the `RDF::Sesame` module # require 'rdf/sesame' # # @see http://rdf.rubyforge.org/ # @see http://www.openrdf.org/ # @see http://www.openrdf.org/doc/sesame2/system/ch08.html # # @author [Arto Bendiken](http://ar.to/) module Sesame autoload :Connection, 'rdf/sesame/connection' autoload :Repository, 'rdf/sesame/repository' autoload :Server, 'rdf/sesame/server' autoload :VERSION, 'rdf/sesame/version' end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rdf-sesame-0.0.1 | lib/rdf/sesame.rb |