I have been using IronRuby for a while now to do simple scripting
against DotNet DLLs with great success. I ran in to a problem recently
where I am asking IronRuby 1.1.1 to require a DLL but it does not appear
to be loaded. I do not get an error message but cannot instantiate any
types from the DLL
Tomas Matousek wrote:
> There should be a line in ir.exe.config that says something like:
>
>value="..\..\Languages\Ruby\libs\;..\..\..\External\Languages\Ruby\ruby-1.8.6\lib\ruby\site_ruby\1.8\;..\..\..\External\Languages\Ruby\ruby-1.8.6\lib\ruby\site_ruby\;..\..\..\External\Languages\Rub
I playing with using ERB in IronRuby and having a little problem. The
code below works fine with Ruby:
require 'erb'
puts ERB.new('hello world').result
but in IronRuby I get this error:
IronRuby.Libraries:0:in `require': no such file to load -- erb
(LoadError)
from :0
Now if I change th