Looks good. Removing tags is good =)
> -Original Message-
> From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-
> boun...@rubyforge.org] On Behalf Of Jim Deville
> Sent: Tuesday, February 10, 2009 4:47 PM
> To: IronRuby External Code Reviewers
> Cc: ironruby-core@rubyforge.org
Reviewed by JSchementi via IRC
> -Original Message-
> From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-
> boun...@rubyforge.org] On Behalf Of Jim Deville
> Sent: Tuesday, February 10, 2009 4:47 PM
> To: IronRuby External Code Reviewers
> Cc: ironruby-core@rubyforge.org
> Sub
tfpt review "/shelveset:bugfixes1;REDMOND\jdeville"
Comment :
BinaryEncoding changes to help mono compilation, thanks to M. Letterle.
Changes in FileOps to fix File.dirname (Rubyforge bugs 23669 and 22167), thanks
to Ivan Porto Carrero. Tag changes for the FileOps fix.
bugfixes1.diff
Yep, igem install doesn't work currently, Tomas said he'd look at it. In the
meantime:
· Add c:\path\to\ironruby\Merlin\Main\Languages\Ruby\Scripts\Bin to
your PATH
· Point rubygems at c:\path\to\ruby-1.8.6\lib\ruby\gems (rather than
ironruby\gems) by changing
c:\path\to\ruby
I just sent out a pull request, here's the diff to fix the error:
Merlin/Main/Languages/Ruby/Ruby/Runtime/BinaryEncoding.cs
@@ -30,7 +30,8 @@ namespace IronRuby.Runtime {
// TODO: remove
public static readonly Encoding/*!*/ Obsolete = Instance;
- private BinaryEncoding() {
+ p
Hi Ivan,
It is a very good documentation of what we have now. I have been playing with
Ironruby and becon couldn't make it work. I am going to give it a try with your
suggestion.
Thanks for the help.
--- On Tue, 2/10/09, Ivan Porto Carrero wrote:
From: Ivan Porto Carrero
Subject: Re: [Ironr
I have this bug fixed in my linux/mono branch. File a bug (if there isn't
one already) and I'll submit my patch to it.
On Mon, Feb 9, 2009 at 7:48 PM, Thibaut Barrère
wrote:
> Hi,
> two things:
>
> - I'm sharing in case it's useful to someone else: I pushed some rake tasks
> here http://github.c
Hi guys,
thanks for all the suggestions.
> Ah, me = dummy. You have that interface in C#, and the IronRuby code you're
> hosting can't see the interface. This should expose all the types in the
> current assembly:
>
> engine.Runtime.LoadAssembly(GetType().Assembly);
>
That's what was missing! Tha
Hi Claudio
What I did was the following:
I cloned ironruby from git
then i build it using rake
I use this .cmd file in the git root folder which is C:\tools\ironruby in my
case
@ECHO OFF
cd merlin/main/Languages/Ruby
ECHO "compiling debug version"
rake compile
cd ../../../..
ECHO "All done"
I