I'm wondering about the current support there is in Ruby for semantic web technologies. Is there good RDF options? It seems that the last surveys done were circa 2007 ( http://paul-classic.stadig.name/2007/10/26/the-state-of-rdf-support-in-ruby-2007/ ). Is Redland's RDF wrappers the best way to go for RDF support - all the other projects mentioned in that aging article seem to be unsupported or dropped. Is Ruby perhaps a bad choice if one which to pursue projects pertaining to the semantic web?
closed as not constructive by LittleBobbyTables, gnat, C. A. McCann, Mac, ataylor Dec 4 '12 at 21:11
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Hey, Iaalto, I'm the author of the survey article that you mentioned. I've been thinking about doing a new survey. A little has changed since I did the original survey, but not much. Here are a couple of things to consider:
Bottom line: If JRuby is not a problem for you, then go with ActiveRDF, it is the most complete and mature. If memory based graph is not a problem, then the next most mature is probably Reddy. |
|||
|
|
|
I just wrote up a new survey article on Ruby and RDF. Some of my conclusions are:
There are also some interesting follow-up comments from the authors of RDF.rb and Spira. Ben Lavender, in particular, has thought a lot about how to sanely map RDF onto Ruby objects. |
|||
|
|
|
Personally I went for RDF.rb as their web site had OK documentation, and it was easy to get started with using the blog tutorials. ActiveRDF seems like a larger project - but their wiki is down (actually the main page links to a copy of the wiki on archive.com) - and all the example talk about SPARQL queries. Here's a simple triple lookup example, apologies for silly syntax as this was my first Ruby script:
Unfortunately, like many Ruby and Python dependencies, this also needed some binaries to be able to read Turtle or RDF/XML. "aptitude install raptor-utils" took care of that, though. |
|||
|
|
|
I'm the author of Redland but I don't use Ruby myself. The ruby bindings probably still work (they passed the unit tests at the last release) but probably need some love for any newer ruby language changes. Pure Ruby users I think have tried Active RDF which is more recent than the other things you suggest but focused on Rails. Otherwise I suggest asking on the Semantic Web Interest Group IRC channel - #swig on irc.freenode.net Edit: There's also Reddy http://github.com/tommorris/reddy/tree/master and other ruby rdf code on github if you look around. |
||||
|
|
|
Check out RDF.rb http://rdf.rubyforge.org/ |
|||
|
|
|
AllegroGraph (RDF DB) has a Ruby Client - https://github.com/phifty/agraph |
|||
|
|
|
There is a Ruby Sesame library: http://github.com/tillsc/ruby-sesame Sesame is one of the two most popular RDF frameworks for Java. We (Ontotext) develop a triple storage + built-in inference engine called OWLIM. We provide a free version called SwiftOWLIM. Some of our users use it with Ruby through the above Ruby Sesame library. |
||||
|
|