Re: [Ironruby-core] Getting a delegate in IronRuby

2009-08-03 Thread Ray Vernagus
** I tried sending this much earlier but my message didn't go through ** Hi, Martin-- Here's a short example that might illustrate what you're trying to accomplish: require "System.Windows.Forms" include System include System::Windows::Forms button = Button.new click_event = button.GetType.get

Re: [Ironruby-core] More WCF fail

2009-08-03 Thread Ray Vernagus
Re: WCF services with IronRuby WCF programmers interested in IronRuby might like to check out an example of using WCF in IronRuby that I have created: wcf_service.rb A few caveats are

Re: [Ironruby-core] IronRubyInline

2009-08-04 Thread Ray Vernagus
ot of the work of > compiling C# will be common to both scenarios. > > > > *From:* ironruby-core-boun...@rubyforge.org [mailto: > ironruby-core-boun...@rubyforge.org] *On Behalf Of *Ray Vernagus > *Sent:* Monday, August 03, 2009 7:26 PM > *To:* ironruby-core@rubyforge.org &g

Re: [Ironruby-core] ActiveRecord update

2009-08-11 Thread Ray Vernagus
I've been meaning to chat with the lead on the Rails SQL Server adapter about the patch. He had some questions and I need some guidance on creating tests for the patch. I'll try to get to it ASAP (been very busy last couple of weeks). I'll keep the list updated. --Ray On Tue, Aug 11, 2009 at 3:3

Re: [Ironruby-core] can't include System

2009-11-20 Thread Ray Vernagus
Converter is a *delegate *type in the System namespace (it comes from mscorlib.dll, not System.dll). You should probably put your class in a custom namespace like so: module MyModule class Converter ... end end On Fri, Nov 20, 2009 at 10:39 AM, Patrick Brown wrote: > Hello > >Can any