Sha256: 86e7d6d3e1f456e4adc254447a42be8569c13c97a6a490640d0c466bab8f696f

Contents?: true

Size: 1.18 KB

Versions: 25

Compression:

Stored size: 1.18 KB

Contents

ActiveRDF is a library for accessing RDF data from Ruby programs. It can be used 
as data layer in Ruby-on-Rails, similar to ActiveRecord (which provides an O/R 
mapping to relational databases). ActiveRDF in RoR allows you to create semantic 
web applications very rapidly. ActiveRDF gives you a Domain Specific Language 
(DSL) for your RDF model: you can address RDF resources, classes, properties, 
etc. programmatically, without queries.

See http://www.activerdf.org for more information.

== Getting Started

See http://wiki.activerdf.org/GettingStartedGuide for information on how to
install ActiveRDF, point to data sources, and use it. In brief: "gem install
activerdf_sparql".

== Simple Example

The following example uses a SPARQL endpoint with FOAF data and displays all 
people found in the data source:

 require 'activerdf'
 ConnectionPool.add_data_source :type => :sparql, :host => '...'
 Namespace.register :foaf, 'http://xmlns.com/foaf/0.1/'
 ObjectManager.construct_classes
 people = FOAF::Person.find_all

== License
ActiveRDF is distributed under the LGPL[http://www.gnu.org/licenses/lgpl.html] license.

== Authors
* Eyal Oren
* Renaud Delbru
* Sebastian Gerke
* Benjamin Heitmann

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
activerdf_net7-1.7.2 README.rdoc
activerdf_net7-1.7.1 README.rdoc
activerdf_net7-1.7.0 README.rdoc
activerdf_net7-1.6.16 README.rdoc
activerdf_net7-1.6.15 README.rdoc
activerdf_net7-1.6.14 README.rdoc
activerdf_net7-1.6.13 README.rdoc
activerdf_net7-1.6.12 README.rdoc
activerdf_net7-1.6.11 README.rdoc
activerdf-1.2.3 README
activerdf-1.3.1 README
activerdf-1.3 README
activerdf-1.6.5 README
activerdf-1.6.6 README
activerdf-1.6.8 README
activerdf-1.4 README
activerdf-1.6.4 README
activerdf-1.6.3 README
activerdf-1.6.2 README
activerdf-1.6.11 README