Re: [Ironruby-core] when do we get this?

2010-01-05 Thread Jimmy Schementi
> Interesting. I thought that technique was only providing an underlying > "anonymous .NET base class" for binding purposes, much as IronRubyInline > could offer but without having to write any C#. I guess I was mistaken. You're actually correct. The IronPython clrtype feature simply allows you

Re: [Ironruby-core] when do we get this?

2010-01-05 Thread Ryan Riley
Thanks for the response, Jimmy. That really clears things up. So IDynamicObject binding is in SL4 now or planned for release? Ryan Riley Email: ryan.ri...@panesofglass.org LinkedIn: http://www.linkedin.com/in/ryanriley Blog: http://wizardsofsmart.net/ Twitter: @panesofglass Website: http://paneso

[Ironruby-core] Problem with FolderBrowserDialog

2010-01-05 Thread Robert Rouse
Hello, I have an interesting problem that I can¹t work out. I have a GUI app that uses FolderBrowserDialog. It works fine when I run it from the command line with ir. When I embed IronRuby in an app, the browse window comes up, the ok, cancel, and make new folder buttons are there, but the actua

Re: [Ironruby-core] Problem with FolderBrowserDialog

2010-01-05 Thread Robert Rouse
That was it. It works now. On 1/5/10 10:21 AM, "Curt Hagenlocher" wrote: > I seem to recall that the actual folder brower is implemented via COM, and > that you probably need an [STAThread] attribute on your Main method. > > > From: ironruby-core-boun...@rubyforge.org > [mailto:ironruby-core

[Ironruby-core] One gem to rule them all?

2010-01-05 Thread Ben Hall
Hi guys, On my MacBook I'm noticing I'm having to install a gem three times (MRI, IronRuby, JRuby) - which is getting really annoying :) Am I doing something wrong??? Is there a way around this?? Thanks Ben ___ Ironruby-core mailing list Ironruby-core

Re: [Ironruby-core] One gem to rule them all?

2010-01-05 Thread Jim Deville
What gem? -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Ben Hall Sent: Tuesday, January 05, 2010 3:38 PM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] One gem to rule them all? Hi guys, On my MacBook I'm

Re: [Ironruby-core] One gem to rule them all?

2010-01-05 Thread Ivan Porto Carrero
you can share gems by setting a location in .gemrc But there be dragons. because gem install will only generate the proper executable links for the version that is installing the gem. if you don't want to download the gems all the time then you can just reuse the .gem file from Assuming you have

Re: [Ironruby-core] One gem to rule them all?

2010-01-05 Thread Jimmy Schementi
Ben, do you mean each implementation is using a different RubyGems repository, so running "gem list" on each implementation gives you a different list? To work-around this, set both the "GEM_PATH" and "GEM_HOME" environment variables to be the RubyGem repo you want to use, and all the implementa