[#3986] Re: Principle of least effort -- another Ruby virtue. — Andrew Hunt <andy@...>

> Principle of Least Effort.

14 messages 2000/07/14

[#4043] What are you using Ruby for? — Dave Thomas <Dave@...>

16 messages 2000/07/16

[#4139] Facilitating Ruby self-propagation with the rig-it autopolymorph application. — Conrad Schneiker <schneik@...>

Hi,

11 messages 2000/07/20

[ruby-talk:04034] Re: Ruby and Interbase on Windows

From: Aleksi Niemel<aleksi.niemela@...>
Date: 2000-07-15 12:32:23 UTC
List: ruby-talk #4034
Jilani:
> > why this code doesn't work?
> > The errore is: "No such file to load -- interbase <loaderror>"
> > Windows 2000 Prof. platform, Ruby 1.4.5 for Windows, and 
> "interbase.dll"
> > in c:\ruby
> > #=====================================================
> > require 'interbase'

Michael:
> Put "interbase.dll" in the C:\ruby\lib directory!

Or perhaps you could change RUBYLIB environment variable to include the path
where interbase.dll is located. Therefore on new installs you don't have to
remember to copy each time.

Alternatively (TIMTOWTDI :) you could add 

  $LOAD_PATH << 'c:\path\to\interbase\dll'

somewhere in your code to be executed before first "require 'interbase'" is
executed.

	- Aleksi

In This Thread

Prev Next