[Ironruby-core] Code Review: rc2fixes

2010-01-30 Thread Jimmy Schementi
tfpt review "/shelveset:rc2fixes;REDMOND\jimmysch" Comment : Couple of easy fixes for IronRuby 1.0 RC2: "NoOf" does not mangle to "no_of" http://ironruby.codeplex.com/WorkItem/View.aspx?WorkItemId=3562 exec cant run a batch file http://ironruby.codeplex.com/WorkItem/View.aspx?

Re: [Ironruby-core] File.symlink

2010-01-30 Thread Ryan Riley
Yes, I found the link at the bottom to the definition of gullible. Hmm ... maybe not gullible, but certainly not journalistic material. :) At the moment, I found a work-around, but I'd be interested into looking into this further down the road. Thanks, Ryan Riley Email: [email protected]

Re: [Ironruby-core] File.symlink

2010-01-30 Thread Jim Deville
Note, that when I say this, I mean it as me, not as some official word from the team ;) From: [email protected] [mailto:[email protected]] On Behalf Of Jim Deville Sent: Saturday, January 30, 2010 2:19 PM To: [email protected] Subject: Re: [Ironruby-

Re: [Ironruby-core] File.symlink

2010-01-30 Thread Jim Deville
Wasn’t Wuby an April Fool’s joke? I would love to see us support Junctions and links down the road, but I don’t see that happening until post 1.0. JD From: [email protected] [mailto:[email protected]] On Behalf Of Ryan Riley Sent: Saturday, January 30, 2010

[Ironruby-core] File.symlink

2010-01-30 Thread Ryan Riley
While working with Ivan on the amp project, I came across a windows error when trying to create symlinks using File.symlink. This is well-documentedand has a few fixes

Re: [Ironruby-core] Cannot require 'liquid' (workitem created)

2010-01-30 Thread Thibaut Barrère
That was fast! Thanks :) -- Thibaut On Sat, Jan 30, 2010 at 6:54 PM, Tomas Matousek < [email protected]> wrote: > This fixes it. > > > > Tomas > > > > *From:* [email protected] [mailto: > [email protected]] *On Behalf Of *Thibaut Barrère > *Sent:* S

Re: [Ironruby-core] Cannot require 'liquid' (workitem created)

2010-01-30 Thread Tomas Matousek
This fixes it. Tomas From: [email protected] [mailto:[email protected]] On Behalf Of Thibaut Barrère Sent: Saturday, January 30, 2010 4:19 AM To: ironruby-core Subject: [Ironruby-core] Cannot require 'liquid' (workitem created) Hi, I wanted to see if liquid

[Ironruby-core] Code Review: FixLiquid

2010-01-30 Thread Tomas Matousek
tfpt review "/shelveset:FixLiquid;REDMOND\tomat" Fixes target object boxing in singleton method definition. Tomas FixLiquid.diff Description: FixLiquid.diff ___ Ironruby-core mailing list [email protected] http://rubyforge.org/mailman/li

Re: [Ironruby-core] Differences between 1/ MRI and 2/ IronRuby+JRuby

2010-01-30 Thread Thibaut Barrère
Thanks - that's probably a 1.8 specific thing... We'll see what others have to say on Monday :) Thanks for your tests! -- Thibaut ___ Ironruby-core mailing list [email protected] http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] Differences between 1/ MRI and 2/ IronRuby+JRuby

2010-01-30 Thread Ivan Porto Carrero
mine was on windows with ruby 1.9.1 though.. I don't have a 1.8 around to see if that same test works with 1.8 on windows. In 1.9.1 the tweaked stuff works too + C:\dev » irb irb(main):001:0> require 'erb' => true irb(main):002:0> require 'ostruct' => true irb(main):003:0> irb(main):004:0* class O

Re: [Ironruby-core] Differences between 1/ MRI and 2/ IronRuby+JRuby

2010-01-30 Thread Thibaut Barrère
Hey Ivan, thanks for your answer. I redid the test on: - Mac OS X (mri ruby 1.8.7 (2009-06-12 patchlevel 174) [i686-darwin10.0.0]) => http://gist.github.com/290538#file_test_on_mac_os_x.txt - Windows 7 (mri ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]) => http://gist.github.com/290538#fi

Re: [Ironruby-core] Differences between 1/ MRI and 2/ IronRuby+JRuby

2010-01-30 Thread Ivan Porto Carrero
AFAIK that shouldn't work in MRI either + C:\dev » irb irb(main):001:0> require 'erb' => true irb(main):002:0> irb(main):003:0* data = { :version => RUBY_PLATFORM } => {:version=>"i386-mingw32"} irb(main):004:0> irb(main):005:0* class Hash irb(main):006:1> def method_missing(method,*args) irb(ma

[Ironruby-core] Differences between 1/ MRI and 2/ IronRuby+JRuby

2010-01-30 Thread Thibaut Barrère
Hello, maybe someone can shed some light on that - the question is: is there a setting to make IronRuby works the same way MRI Ruby does by default for what I'm describing below ? I don't think it's a bug (but well maybe it is, just wondering). Using this script http://gist.github.com/290538 , MR

[Ironruby-core] Cannot require 'liquid' (workitem created)

2010-01-30 Thread Thibaut Barrère
Hi, I wanted to see if liquid (http://www.liquidmarkup.org => non evaling templating system) would work with IronRuby, but apparently it doesn't. require 'liquid' is raising this: Expression of type 'System.Boolean' cannot be used for parameter of type 'System.Object' of method 'System.Object De