Sha256: 54e58e7f96bdd14d94374286261a9c062554c6cd2441a38f539950fd2cfbcc02
Contents?: true
Size: 546 Bytes
Versions: 1
Compression:
Stored size: 546 Bytes
Contents
# # Author: Karsten Huneycutt # Copyright 2007 Valkeir Corporation # License: LGPL # # add the directory in which this file is located to the ruby loadpath file = if File.symlink?(__FILE__) File.readlink(__FILE__) else __FILE__ end $: << File.dirname(File.expand_path(file)) java_dir = File.expand_path(File.join(File.dirname(File.expand_path(file)), "..", "..", "ext")) Dir.foreach(java_dir) do |jar| $CLASSPATH << File.join(java_dir, jar) if jar =~ /.jar$/ end require 'jena' require 'pellet' require 'lucene' require 'jena_adapter'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
activerdf_jena-0.1 | lib/activerdf_jena/init.rb |