Re: [Ironruby-core] Code Review: bugfixes-7

2008-05-08 Thread Unnikrishnan
Hi john, I implemented both basename and file as well. But I will build a patch without those two in it after getting your update. Thanks. On May 8, 2008, at 3:37 PM, "John Lam (IRONRUBY)" <[EMAIL PROTECTED]> wrote: tfpt review /shelveset:bugfixes-7;REDMOND\jflam Ruby only This shelveset

Re: [Ironruby-core] Interactive IronRuby "Try Ruby in Your Browser" Shell

2008-05-12 Thread Unnikrishnan
Silver light and ironruby, I like that idea... Keep me posted ... I would love contribute .2 On May 12, 2008, at 3:35 PM, Oleg Tkachenko <[EMAIL PROTECTED]> wrote: Thanks for posting it here. This is just ASP.NET page hosting Ruby runtime server side. Probably Silverlight would be a bett

[Ironruby-core] RBX Question

2008-04-15 Thread Unnikrishnan Nair
I see only difference is the there is no local variable concept when run in interpreter mode. Is this correct? Thanks. Unni What is the difference in running ruby code in interpreter mode on rbxand running rbx with ruby code in a file passed as a parameter? __

[Ironruby-core] class question.

2008-04-30 Thread Unnikrishnan Nair
Please bear with me if it is already discussed; I am running the following code class Tester def sayHello hi puts "I am saying hello" end private def hi puts "Did I say hi?" end private :hi#doube checking private end p = Tester.new p.hi p.

Re: [Ironruby-core] Opening up our tree to external committers

2008-04-30 Thread Unnikrishnan Nair
I have been coding in C# for quite a while, I would love to chip in Thanks. - Original Message From: Michael Letterle <[EMAIL PROTECTED]> To: ironruby-core@rubyforge.org Sent: Wednesday, April 30, 2008 1:47:14 PM Subject: Re: [Ironruby-core] Opening up our tree to external committers

Re: [Ironruby-core] class question.

2008-05-01 Thread Unnikrishnan Nair
I will continue the rest of the testing.. Thanks - Original Message From: Jim Deville <[EMAIL PROTECTED]> To: "ironruby-core@rubyforge.org" Sent: Thursday, May 1, 2008 10:22:53 AM Subject: Re: [Ironruby-core] class question. Private appears to be broken. Can you submit this as a bug

[Ironruby-core] external contribution question

2008-05-06 Thread Unnikrishnan Nair
Just curious, which are all the modules need help with? I am interested in contributing. Thanks. - Original Message From: John Lam (IRONRUBY) <[EMAIL PROTECTED]> To: IronRuby External Code Reviewers <[EMAIL PROTECTED]> Cc: "ironruby-core@rubyforge.org" Sent: Monday, May 5, 2008 12:07:1

Re: [Ironruby-core] external contribution question

2008-05-06 Thread Unnikrishnan Nair
Thanks John, I will look at the #pack and #unpack along with File. - Original Message From: John Lam (IRONRUBY) <[EMAIL PROTECTED]> To: "ironruby-core@rubyforge.org" Sent: Tuesday, May 6, 2008 11:14:23 AM Subject: Re: [Ironruby-core] external contribution question U

Re: [Ironruby-core] external contribution question

2008-05-06 Thread Unnikrishnan Nair
2008 11:14:23 AM Subject: Re: [Ironruby-core] external contribution question Unnikrishnan Nair: > Just curious, which are all the modules need help with? I am > interested in contributing. > Thanks. There are a lot of methods in File that need to be implemented. That should be a reas

Re: [Ironruby-core] Trouble opening IronRuby.sln

2008-05-07 Thread Unnikrishnan Nair
I am not sure anyone looked at this issue. I was able to open the project successfully in my laptop and this morning, when I tried in mydesktop I got the same error (I am using VS2008). This is what I found, 5 different project has following entries <<< .mine === >>> .r101

Re: [Ironruby-core] Trouble opening IronRuby.sln

2008-05-07 Thread Unnikrishnan Nair
/ Pete From:[EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Unnikrishnan Nair Sent: Wednesday,07 May 07, 2008 15:15 To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Trouble opening IronRuby.sln I am not sure anyone looked at this issue. I was able to open the project successfully

[Ironruby-core] TDD in coding!

2008-05-08 Thread Unnikrishnan Nair
Are we developing the code in TDD style with CI? Currently all the methods I have added, I have a seperate ruby code which runs test against to verify my results. I would like to know are we adding the tests build into the code itself? Sorry, I didn't see the test cases, thats why I asked. Than

Re: [Ironruby-core] TDD in coding!

2008-05-08 Thread Unnikrishnan Nair
AIL PROTECTED]> To: "ironruby-core@rubyforge.org" Sent: Thursday, May 8, 2008 11:18:22 AM Subject: Re: [Ironruby-core] TDD in coding! Unnikrishnan Nair: > Are we developing the code in TDD style with CI? Currently all the > methods I have added, I have a seperate ruby code which

Re: [Ironruby-core] TDD in coding!

2008-05-08 Thread Unnikrishnan Nair
I will do that. Thanks. - Original Message From: John Lam (IRONRUBY) <[EMAIL PROTECTED]> To: "ironruby-core@rubyforge.org" Sent: Thursday, May 8, 2008 3:17:46 PM Subject: Re: [Ironruby-core] TDD in coding! Unnikrishnan Nair: > Thanks, How do I go about sending the

Re: [Ironruby-core] RubyForge bug fixes

2008-05-10 Thread Unnikrishnan Nair
Quick question, are these following assertions are correct?     should_raise(TypeError){ File.basename(1) }     should_raise(TypeError){ File.basename("bar.txt", 1) }     should_raise(TypeError){ File.basename(true) } I was expecting all the above three should be ArgumentError than TypeError, unti

Re: [Ironruby-core] RubyForge bug fixes

2008-05-10 Thread Unnikrishnan Nair
ntext, object/*!*/self, object/*!*/path, object/*!*/filter)returnBasename(context, self, Protocols.CastToString(context, path), Protocols.CastToString(context, filter)); - Original Message From: John Lam (IRONRUBY) <[EMAIL PROTECTED]> To: "ironruby-core@rubyforge.org" Sent

Re: [Ironruby-core] RubyForge bug fixes

2008-05-11 Thread Unnikrishnan Nair
ct: Re: [Ironruby-core] RubyForge bug fixes Hi Unnikrishnan, Just a couple of points you might find useful: · A number of overloads have parameters like ..., object/*!*/ path, ... What you are saying to the Specsharp tool is that object should never be null.  Is this what you want?  Can you pa

[Ironruby-core] changes to basename_spec.rb

2008-05-12 Thread Unnikrishnan Nair
I found couple of problems with the basename spec and I am attaching the modified one for your review. I left the "w+" as it is, with your new changes, this should work. Also couple of places the checks for 'bar' against 'baz', I correct the spelling and one last thing, couple of places the asse

[Ironruby-core] changes to extname_spec.rb

2008-05-13 Thread Unnikrishnan Nair
One more spec change. Could you please review line 8 of this spec, it should read     File.extname(".bashrc").should == ".bashrc" instead of     File.extname(".bashrc").should == "" Please see the change in the attached spec file. Thanks. extname_spec.rb Description: Binary data _

Re: [Ironruby-core] rake test

2008-05-13 Thread Unnikrishnan Nair
In one of my rake test I ran into the same problem. It looks like one of the method was getting a null value even though the method signature had   [NotNull] with /*!*/. I added a code if the value is null return false and my rake test went through. It happened for all but one test so I am ok fo

[Ironruby-core] Some more spec changes!

2008-05-13 Thread Unnikrishnan Nair
As I was doing the test for FileOps, I ran into couple spec file problems. join_spec: changed: couple of places instead of comparison operator ==, it has assignment operator =. I changed it and is in the uploaded file. Need to change: Windows use \ for directory seperation, while linux uses /, al

Re: [Ironruby-core] Interactive IronRuby "Try Ruby in Your Browser" Shell

2008-05-14 Thread Unnikrishnan Nair
I am really sorry about that. I will make sure it does not happen. it is just to get the group e-mail id. I better add the email to my contact and start new thread when required. Thanks. - Original Message From: Web Reservoir <[EMAIL PROTECTED]> To: ironruby-core@rubyforge.org Sent: W

Re: [Ironruby-core] changes to extname_spec.rb

2008-05-14 Thread Unnikrishnan Nair
- Original Message From: Alex Young <[EMAIL PROTECTED]> To: ironruby-core@rubyforge.org Sent: Wednesday, May 14, 2008 5:43:59 AM Subject: Re: [Ironruby-core] changes to extname_spec.rb Unnikrishnan Nair wrote: > One more spec change. Could you please review line

Re: [Ironruby-core] changes to extname_spec.rb

2008-05-14 Thread Unnikrishnan Nair
t: Wednesday,14 May 14, 2008 11:44 To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] changes to extname_spec.rb Unnikrishnan Nair wrote: > One more spec change. Could you please review line 8 of this spec, it > should read > > File.extname(".bashrc").should == &qu

Re: [Ironruby-core] IronRuby r112 is out

2008-05-23 Thread Unnikrishnan Nair
John, I saw 112 has FileOps implemented so please discard the patch I send in earlier. Let me know if there are any other area you would like me to help with? Thanks. - Original Message From: John Lam (IRONRUBY) <[EMAIL PROTECTED]> To: "ironruby-core@rubyforge.org" Sent: Friday, May 2

Re: [Ironruby-core] Just announced that we're running unmodified Rails on my blog

2008-05-30 Thread Unnikrishnan Nair
Can't wait to play with it. Good luck on the presentation as well. Will you be posting the slides and demo code in your web site? Thanks. --- On Fri, 5/30/08, John Lam (IRONRUBY) <[EMAIL PROTECTED]> wrote: From: John Lam (IRONRUBY) <[EMAIL PROTECTED]> Subject: [Ironruby-core] Just announced tha

Re: [Ironruby-core] RailsConf hacks

2008-06-02 Thread Unnikrishnan Nair
John,   Will you be posting the slides somewhere for the folks like me who couldn't attend the RailsConf?   Thanks and great work getting rails run. Unni --- On Sun, 6/1/08, John Lam (IRONRUBY) <[EMAIL PROTECTED]> wrote: From: John Lam (IRONRUBY) <[EMAIL PROTECTED]> Subject: [Ironruby-core] Rail

Re: [Ironruby-core] IronRuby got /.-ed

2008-06-05 Thread Unnikrishnan Nair
I had a serious headache after reading throught that thread on the slashdot. Unni - Original Message From: Oleg Tkachenko <[EMAIL PROTECTED]> To: ironruby-core@rubyforge.org Sent: Tuesday, June 3, 2008 12:46:05 AM Subject: [Ironruby-core] IronRuby got /.-ed Hey, IronRuby is on slashdo

[Ironruby-core] spec question

2008-07-05 Thread Unnikrishnan Nair
When I was testing the File.zero? I noticed File.zero?('NUL') failed. I looked the code and it seems there is no special check there to exclude NUL as a not a valid file. I created a constant     private readonly static string NUL_VALUE = "NUL"; and added a else clause in the trycreate meth

Re: [Ironruby-core] spec question

2008-07-05 Thread Unnikrishnan Nair
OTECTED]>, "ironruby-core@rubyforge.org" Date: Saturday, July 5, 2008, 2:16 PM You should be fine making a patch. As for the test, it shouldn't run that test on Windows, but I'm not sure how the old runner works. JD -Original Message- From: "Unnikrishnan Nair" &

Re: [Ironruby-core] spec question

2008-07-06 Thread Unnikrishnan Nair
ommit to your local repository and use "git format-patch -1" to make the patches. Change the number to match the number of commits you have made. In addition, remember that rake spec runs the tests in tests/core, which isn't the same as the git tests. JD -Original Mes

[Ironruby-core] spec changes

2008-07-06 Thread Unnikrishnan Nair
I think the following spec is wrong for FileOps.dirname   It is       File.dirname('/').should == '/'   but it should be       File.dirname('/').should == '//'   If it is my misunderstanding, please let me know.    Thanks, Unni    ___ Ironruby-co

Re: [Ironruby-core] spec changes

2008-07-07 Thread Unnikrishnan Nair
//’).should == ‘/’     end     platform_is :windows do     File.dirname(‘/’).should == ‘//’     end   That will keep it working on *nix.   JD   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Unnikrishnan Nair Sent: Sunday, July 06, 2008 8

Re: [Ironruby-core] IR SVN121 Strong Name validation failed

2008-07-07 Thread Unnikrishnan Nair
Just curious, Did you run runfirst.cmd at svn\trunk before you did rake compile? Thanks, Unni --- On Mon, 7/7/08, Robert Brotherus <[EMAIL PROTECTED]> wrote: From: Robert Brotherus <[EMAIL PROTECTED]> Subject: [Ironruby-core] IR SVN121 Strong Name validation failed To: ironruby-core@rubyforge.org

Re: [Ironruby-core] spec changes

2008-07-07 Thread Unnikrishnan Nair
oblem on Mac with filename and folder casing not matching the csproj file. I would consider Mac as a *nix platform. It has all the stuff I look for (mainly bash, and the UNIX system underneath.   JD   From: Unnikrishnan Nair [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2008 7:18 AM To: ir

[Ironruby-core] Mono build update..

2008-07-07 Thread Unnikrishnan Nair
Finally I got mono to build successfully.I checkout 121 from rubyforge and tried to do rake compile and, it failed on the following line; path_to_config = ENV['USERPROFILE'] + '/.irconfig.rb' I remember seeing some mail about Home and Userprofile setting from John and others sometime back I am

Re: [Ironruby-core] Code Review: unni1

2008-07-16 Thread Unnikrishnan Nair
uby-core] Code Review: unni1 > > > > tfpt review "/shelveset:unni1;REDMOND\jdeville" > > Comment : > > Patch from Unnikrishnan Nair to properly handle File.zero? for > 'NUL' > > > > ___ > Iro

Re: [Ironruby-core] Code Review: unni1

2008-07-16 Thread Unnikrishnan Nair
conference?   Thanks. Unni --- On Wed, 7/16/08, Unnikrishnan Nair <[EMAIL PROTECTED]> wrote: From: Unnikrishnan Nair <[EMAIL PROTECTED]> Subject: Re: [Ironruby-core] Code Review: unni1 To: ironruby-core@rubyforge.org Date: Wednesday, July 16, 2008, 10:34 AM yes, I will do that. T

Re: [Ironruby-core] Code Review: unni1

2008-07-17 Thread Unnikrishnan Nair
;t have the bandwidth. So we're being very > careful about where we go. > > We'll be at RubyConf this year. > > Thanks, > -John > > > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of > Unnikrishnan Nair > Sent: Wednesday, July

Re: [Ironruby-core] Good Efforts by CodeThinked.com for IronRuby

2008-07-21 Thread Unnikrishnan Nair
Sorry if it is duplicate, getting some starge errors on outlook. Also sorry for blowing my own horn :)   I have been writing some blogs for my friends who are C# developers on introduction to IronRuby with C#. It is at http://www.myfavoritemovies.us/Ironruby It is for beginners, especially for p

Re: [Ironruby-core] Good Efforts by CodeThinked.com for IronRuby

2008-07-24 Thread Unnikrishnan Nair
Try this one; http://myfavoritemovies.us/ironruby/ --- On Wed, 7/23/08, Web Reservoir <[EMAIL PROTECTED]> wrote: From: Web Reservoir <[EMAIL PROTECTED]> Subject: Re: [Ironruby-core] Good Efforts by CodeThinked.com for IronRuby To: ironruby-core@rubyforge.org Date: Wednesday, July 23, 2008, 10:04

[Ironruby-core] check out the following link on IronNails!

2008-08-07 Thread Unnikrishnan Nair
http://www.infoq.com/news/2008/08/ironnails;jsessionid=67E9C0D196BA7888B1CC719EEB1418B1 InfoQ did an interview with Ivan on his work on IronNails. ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-c

[Ironruby-core] Did any build ironruby successfully in Mono?

2008-09-06 Thread Unnikrishnan Nair
Just curious, I just checked out 140 from svn and when I build I am getting basename not found in string... Just curious... ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

Re: [Ironruby-core] Did any build ironruby successfully in Mono?

2008-09-06 Thread Unnikrishnan Nair
@rubyforge.org > Date: Saturday, September 6, 2008, 9:47 AM > 2008/9/6 Unnikrishnan Nair <[EMAIL PROTECTED]>: > > Just curious, I just checked out 140 from svn and when > I build I am getting basename not found in string... > > Just curious... > > I do. I need to (a

Re: [Ironruby-core] test .net code with ruby BDD libraries

2009-02-10 Thread Unnikrishnan Nair
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