[Ironruby-core] Installing gems into IronRuby

2012-03-01 Thread Eugene A.
Hi, First post here. Excuse a n00b for silly questions. :) I've been trying to figure this out for a short time and while I have an idea, I'd like some confirmation. I need to install a gem so I can automate some WPF code. One I'm planning to use is called bewildr. How do I install gems into Iron

Re: [Ironruby-core] Installing gems into IronRuby

2012-03-01 Thread Eugene A.
Thanks, that helps. I tried that and igem was in path. However, here is what I got: C:\Program Files (x86)\IronRuby 1.1\bin>igem install bewildr ERROR: While executing gem ... (ArgumentError) Illegal characters in path. Same thing happens when I try to do update: C:\Program Files (x86)\Iro

Re: [Ironruby-core] Installing gems into IronRuby

2012-03-01 Thread Eugene A.
I do have the latest (1.1.3). It's still happening. I think there is an issue with the path somewhere. Is there any sort of log for this? It's rather difficult to figure out where it stumbles without it. -- Posted via http://www.ruby-forum.com/. ___ I

Re: [Ironruby-core] Installing gems into IronRuby

2012-03-01 Thread Eugene A.
Nevermind, I got it! Installed it through NuGet package manager in Visual Studio instead. Both commands worked just fine! -- Posted via http://www.ruby-forum.com/. ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman

[Ironruby-core] IR compilation issue

2012-03-06 Thread Eugene A.
So I'm running my newly made program and the code compiles but I do get this debugging output every time I run it: 'ir.exe' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll' 'ir.exe' (Managed (v4.0.30319)): Loaded 'C:\Pr

Re: [Ironruby-core] Debugging issue

2012-03-09 Thread Eugene A.
Sure, here it is: class login include Tester before(:all) do @app = Bewildr::Application.start('c:/windows/notepad.exe') end There were some commented lines but I took them out. Previously I've worked with Watir and used this: test_suite "Login" do include TestHelper before(:all) d