vote up 0 vote down star

I found cool article on Creating cross platform GUI's with IronRuby where someone re-created the Shoes DSL by _why the lucky stiff in IronRuby.

Awesome right!

So, I downloaded the IronRuby binaries and the code from the article and ran the following command:

c:\IronRuby\bin\ir hello_world.rb

But I get the following error:

:0:in `require': no such file to load -- Microsoft.Scripting, Version=1.0.0.2000 Culture=neutral, PublicKeyToken=null (LoadError)
        from ./shoes.rb:5
        from hello_world.rb:1
        from :0:in `require'

How do I get these sample apps to run?

flag

2 Answers

vote up 1 vote down check

I suspect the version of MS.Scripting that it's asking for doesn't match the version you've got, that's a pretty common problem. Maybe check the version #s?

link|flag
How do I check the version? Can you elaborate a little? Thanks! – jrhicks Sep 15 at 3:05
1  
Just right-click on Microsoft.Scripting.dll and see the version # – Paul Betts Sep 15 at 3:12
There are a few versions when you view the dll properties. I found the "assembly" version to be correct. I also had to set the Public Key Token - I was able to find this value in the ir.exe.config file. Thx. – jrhicks Sep 15 at 4:31
ironruby.net/Documentation/.NET/… – jrhicks Sep 15 at 21:20
vote up 1 vote down

I was able to make the 4 demos examples work after removing the following 5 lines from shoes.rb:

require 'Microsoft.Scripting, Version=1.0.0.2000, Culture=neutral, PublicKeyToken=null'
require 'IronRuby, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null'
include Microsoft::Scripting::Hosting
include Ruby::Runtime
include Ruby

These lines are not needed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.