Re: [Ironruby-core] IronRuby for Office AddIns

2010-12-01 Thread Tinco Andringa
You can download Visual C# Express for free. There is also the MonoDevelop IDE which is free. Beside that you can use any text editor together with the ironruby and c# compiler to work in any way you want :) I am not certain how the Office addin's work but usually that kind of thing works with a (

Re: [Ironruby-core] Ironruby-core Digest, Vol 39, Issue 13

2010-11-26 Thread Tinco Andringa
I agree with this, maybe: require 'clr-library', :mangle => false or perhaps: require 'clr-library', :mangler => ThisMangler Something like this would always fix any possible problems with mangling. (especially since #methods does not return the clr methods) Though if you argue that the manglin

Re: [Ironruby-core] Name mangling seems broken

2010-11-24 Thread Tinco Andringa
/workitem/5463 > > Tomas > > -Original Message- > From: ironruby-core-boun...@rubyforge.org > [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Tinco Andringa > Sent: Monday, November 22, 2010 7:31 PM > To: ironruby-core > Subject: [Ironruby-core] Name mangl

Re: [Ironruby-core] Name mangling seems broken

2010-11-22 Thread Tinco Andringa
You can download the dll's + test source at: https://github.com/d-snp/bwapi-ironruby it requires no setup. (source of the dll's is: http://code.google.com/p/bwapi-mono-bridge/ not mine) Cheers, Tinco On Tue, Nov 23, 2010 at 04:31, Tinco Andringa wrote: > Hey guys, > > I se

[Ironruby-core] Name mangling seems broken

2010-11-22 Thread Tinco Andringa
Hey guys, I seem to have IronRuby name mangling in a rather inconsistent state. I was under the impression it would automagically work, but it seems it only changed the array #methods returns and not the actual methods it responds to... >>> BWAPI::Bwapi.BWAPIClient.is_connected (ir):1: undefined

Re: [Ironruby-core] Lowercase classname

2010-11-20 Thread Tinco Andringa
boun...@rubyforge.org > [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Tinco Andringa > Sent: Saturday, November 20, 2010 2:27 PM > To: ironruby-core > Subject: Re: [Ironruby-core] Lowercase classname > > Hey guys.. it's very nice that you all say the same th

Re: [Ironruby-core] Lowercase classname

2010-11-20 Thread Tinco Andringa
BWAPI.const_get('bwapi'). Thanks for the tips :) On Sun, Nov 21, 2010 at 12:08 AM, Tinco Andringa wrote: > http://code.google.com/p/bwapi-mono-bridge/ here it is :) > > Thanks > > On Sat, Nov 20, 2010 at 11:53 PM, Tomas Matousek > wrote: >> Can you send a link to t

Re: [Ironruby-core] Lowercase classname

2010-11-20 Thread Tinco Andringa
wouldn't have had to ask the question in the first place :) Kind regards, Tinco Andringa On Fri, Nov 19, 2010 at 6:43 PM, Mike Moore wrote: > For some reason Jimmy's reply didn't show up in my inbox until I sent my > reply. Sorry for the duplicate explanation. > >

Re: [Ironruby-core] Lowercase classname

2010-11-19 Thread Tinco Andringa
: ironruby-core-boun...@rubyforge.org > [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Tinco Andringa > Sent: Thursday, November 18, 2010 3:01 PM > To: ironruby-core@rubyforge.org > Subject: Re: [Ironruby-core] Lowercase classname > > Hmm I've found the documentation for

Re: [Ironruby-core] Lowercase classname

2010-11-18 Thread Tinco Andringa
's instead of referencing the other framework. Should I file a bugreport? This is on the 1.1.1 release :) Cheers, Tinco On Thu, Nov 18, 2010 at 15:17, Tinco Andringa wrote: > Hey guys, > > I'm using IronRuby to interface with a clr library. There is a small > problem however

[Ironruby-core] Lowercase classname

2010-11-18 Thread Tinco Andringa
le to work around this in IronRuby (like somehow getting a reference to it with a string, and then assigning it to different ruby constant)? Or should I make my own clr dll that exposes the class with a different (uppercased) name? Cheers, Tinco Andringa

Re: [Ironruby-core] Comparing CLR strings and Ruby strings - a slightly surprising behaviour

2009-03-05 Thread Tinco Andringa
Wouldn't using different syntax especially for clr just amount to creating a new language instead of implementing Ruby on the dlr? (Not to mention a language that's not very intuitive) On Thu, Mar 5, 2009 at 23:00, Orion Edwards wrote: > I like backticks more than single quotes, but ideally you'd

Re: [Ironruby-core] Comparing CLR strings and Ruby strings - a slightly surprising behaviour

2009-03-04 Thread Tinco Andringa
>From what I get from this conversation, the ruby strings are strings with a few extra features (mutability, carrying encoding). Wouldn't it be logical for the ruby muteable strings to extend System.String? Are there methods that only work on .net strings and not on ruby strings? Forgive me if thi