public
Description: Pomegranate is a Ruby library for inferencing over a corpus of triples with RDFS and OWL properties.
Homepage: http://pius.github.com/pomegranate
Clone URL: git://github.com/pius/pomegranate.git
name age message
file .yardoc Tue Dec 30 07:45:13 -0800 2008 Pomegranate 0.9. Supports RDFS and a small, co... [pius]
file COPYING Tue Dec 30 07:45:13 -0800 2008 Pomegranate 0.9. Supports RDFS and a small, co... [pius]
file COPYING.lesser Tue Dec 30 07:45:13 -0800 2008 Pomegranate 0.9. Supports RDFS and a small, co... [pius]
file README.markdown Tue Dec 30 08:25:24 -0800 2008 doh [pius]
file Rakefile Tue Dec 30 07:45:13 -0800 2008 Pomegranate 0.9. Supports RDFS and a small, co... [pius]
directory coverage/ Tue Dec 30 07:45:13 -0800 2008 Pomegranate 0.9. Supports RDFS and a small, co... [pius]
directory doc/ Tue Dec 30 07:45:13 -0800 2008 Pomegranate 0.9. Supports RDFS and a small, co... [pius]
directory lib/ Tue Dec 30 19:34:21 -0800 2008 removed another spiky test [pius]
file pomegranate.gemspec Tue Dec 30 07:45:13 -0800 2008 Pomegranate 0.9. Supports RDFS and a small, co... [pius]
directory spec/ Tue Dec 30 07:45:13 -0800 2008 Pomegranate 0.9. Supports RDFS and a small, co... [pius]
README.markdown

Pomegranate Release 0.9 (December 30th 2008)

Git: http://github.com/pius/pomegranate
Author: Pius Uzamere, The Uyiosa Corporation

Copyright: Pius Uzamere © 2008 License: The Lesser GNU Public License

SYNOPSIS

Pomegranate is a Ruby library for inferencing over a corpus of triples with RDFS and OWL properties. Implements the RDF Schema Language (RDFs) properties as a set of production rules. The rules are executed by Ruleby, a forward-chaining Ruby inferencing engine that implements the Rete algorithm.

FEATURE LIST

  1. Pomegranate can inference over basic RDFS: When finished, this library will have a full test suite and can serve as a maintainable reference implementation of an RDFS inferencer in Ruby. In particular, the following statements are supported:

  2. rdfs:subClassOf

  3. rdfs:subPropertyOf
  4. rdfs:domain
  5. rdfs:range

  6. Pomegranate can inference over RDFS-Plus (RDFS plus a small subset of OWL): RDFS-Plus, as defined in "Semantic Web for the Working Ontologist" is RDFS plus a small subset of OWL, commonly used in the field. In particular, the following statements are supported:

  7. rdfs:subClassOf

  8. rdfs:subPropertyOf
  9. rdfs:domain
  10. rdfs:range
  11. owl:inverseOf
  12. owl:SymmetricProperty
  13. owl:TransitiveProperty
  14. owl:equivalentClass
  15. owl:equivalentProperty
  16. owl:sameAs
  17. owl:FunctionalProperty
  18. owl:InverseFunctionalProperty

USAGE

  1. Make Sure You've Got the Dependencies installed

Pomegranate depends on Ruleby (http://ruleby.org).

> sudo gem install ruleby

  1. Clone the Repository and Install the Gem from Source

> git clone git://github.com/pius/pomegranate.git > cd pomegranate > gem build pomegranate.gemspec > sudo gem install pomegranate

  1. Require the gem in your code, play with it

For usage, the best thing is to click through the documentation. I tried to make it really thorough. If you need more guidance, check out the specs, which demonstrate precisely how to instantiate triples and run the inferencing engine.

  1. Contribute!

Fork my repository (http://github.com/pius/pomegranate), make some changes, and send along a pull request!

The best way to contribute is to add a unit test for a specific OWL property that does not parse and then add (and/or tweak) rules such that your new test case plus all the others pass.

COPYRIGHT


Pomegranate was created in 2008 by Pius Uzamere (pius -AT- alum -DOT- mit -DOT- edu) and is
licensed under the LGPL.