Class: Netica::Tools

Inherits:
Object
  • Object
show all
Defined in:
lib/netica/java_library_path.rb

Class Method Summary collapse

Class Method Details

.library_pathObject



6
7
8
9
10
11
12
# File 'lib/netica/java_library_path.rb', line 6

def self.library_path
  str = "Place NeticaJ.jar in one of the following locations:\n"
  System.getProperties["java.library.path"].split(':').each do |pth|
    str << "  => #{pth}\n" unless pth == '.'
  end
  str
end