First Look at IronRuby

Over the last few years we've been working to make .NET and the CLR a great environment for dynamic languages.  About 14 months ago we formed a dedicated group within my team that has been focused on adding richer CLR runtime support for dynamic languages, as well as delivering first class .NET implementations of popular dynamic languages.

DLR Background

This spring we shipped the first preview release of a new .NET library that we call the "Dynamic Language Runtime" (or DLR for short).  It provides a set of features on top of the CLR designed explicitly for dynamic language scenarios.  These include a shared dynamic type system, language hosting model, and support to make it possible to generate fast dynamic code.  These features make it much easier to build high-quality dynamic language implementations on .NET.  These implementations can access and use any of the APIs in the .NET Framework, as well as easily interoperate with code written in any other .NET language (for example: you could write a Ruby class that invokes and uses a C# class, which in turn invokes a Python class).

This spring at the MIX 07 conference we announced that Microsoft will be shipping 4 dynamic language implementations of our own for .NET:

  • IronPython
  • IronRuby (new)
  • Javascript
  • Dynamic VB (new)

The source code of our IronPython implementation, as well as the source code for the underlying DLR library, was published on CodePlex in April.  You can download both of them today from the IronPython codeplex site.  All of the source is made available under the MSPL permissive license - which provides full commercial and non-commercial modification rights.

IronRuby Pre-Alpha Release

Today we are making available the first public drop of our IronRuby implementation.  You can learn more about how to download the source, build it, and try it out from John Lam's blog post here.

Today's IronRuby drop is still a very early version, and several language features and most libraries aren't implemented yet (that is why we are calling it a "pre-alpha" release).  It does, though, have much of the core language support implemented, and can also now use standard .NET types and APIs.

IronRuby has been architected to take advantage of a new DLR feature we call "Dynamic Sites" - which delivers a fast adaptive call-site method caching implementation.  It also uses the lightweight-code generation features of the CLR.  Lightweight code generation enables dynamic language implementations to create in-memory IL that is then JIT'd into native code at runtime (without ever having to save anything to disk).  This can yield much better runtime performance than interpreted code, and the lightweight codegen feature ensures that once we are finished with the JIT'd code we can optionally garbage collect it to avoid leaking. 

We are releasing today's drop mainly for developers interested in language implementations to start looking at the IronRuby source code, and learn how it was implemented.  Developers interested in playing with an early version of Ruby for .NET can also download it and give it a spin.

IronRuby Project Plans

Next month we will be moving the IronRuby source code repository to be hosted on RubyForge.  As part of this move we are also opening up the project to enable non-Microsoft developers to enlist in the project and contribute source code. We'll then work to implement the remaining features and fix compatibility issues found as more libraries and source are ported to run on top of it. 

The end result will be a compatible, fast, and flexible Ruby implementation on top of .NET that anyone can use for free.

IronRuby "Hello World" Console Sample

If you download and build the IronRuby source code, you are probably wondering "how do I start using it?" 

The easiest way to get started is to run the "rbx.exe" interactive console application that by default is built under the \bin\release directory:

This console shell provides you with the ability to write Ruby code interactively.  After each line, the shell will interactively execute it. 

For example, we could output hello world by typing puts "Hello World":

To output this 10 times in a row, we could type the following:

To use Windows Forms functionality in IronRuby, we could type a require statement that references the System.Windows.Forms assembly, and then use the MessageBox.Show method to display a message in a modal dialog:

IronRuby "Hello World" WPF Sample

One of the benefits of implementing a language on top of .NET is that it enables developers using that language to get full access to the rich framework libraries provided with the .NET Framework.  

For a simple example of this in action, I could create a "HelloWPF.rb" text file and type in the following Ruby code below:

The above code uses the WPF UI framework to create a Window that hosts a StackPanel layout manager that initially contains just a button.  When the button is pressed, a new label control is created and added into the StackPanel (causing it to automatically be flowed in the Window). 

I can then run the above application using IronRuby by passing the "HelloWPF.rb" text file as an argument to rbx.exe:

When I run it I'll get a window with a WPF button (note above I added a nice DropShadowBitmapEffect to it in the code above):

And each time I press the button a new label will be added to the Window:

Not only does having the ability to use all of the .NET APIs provide a lot of power, but you'll notice in the code we wrote how it is possible to naturally integrate .NET APIs into other language syntaxes:

In the code snippet above I'm using the Ruby block language feature (similar to a Lambda expression with C# 3.0 and VB9) to implement a "Click" event handler on the WPF button.  Notice how within the block the standard Ruby naming patterns can be used when accessing any .NET API.  For example, instead of using the "FontSize" property on the WPF Label we are accessing it using "font_size" as the property accessor name. IronRuby automatically handles the naming conversion - enabling developers to program with a consistent naming pattern regardless of their language of choice.

Summary

If you are interested in trying out this first early drop of IronRuby, you can download the source and build it here.

You can then download my WPF sample above and run it yourself here (note: you must have .NET 3.0 or 3.5 installed - since those deliver the WPF APIs).  To learn more about WPF, I also highly recommend Adam Nathan's excellent WPF Unleashed book (read the review comments on Amazon to see why).

Hope this helps,

Scott

Published Monday, July 23, 2007 8:45 AM by ScottGu
Filed under:

Comments

# re: First Look at IronRuby

Monday, July 23, 2007 12:21 PM by Dan

Once again, it seems, the Developer Division is one of the best organizations within Microsoft.  You all are always cranking out impressive stuff.  Excellent work Scott!  Oh, and I'm desperately waiting for the VS2K8 Beta 2 - will it be dropped soon?

# re: First Look at IronRuby

Monday, July 23, 2007 12:30 PM by ScottGu

Hi Dan,

Glad you like it! :-)

>>>>>>> Oh, and I'm desperately waiting for the VS2K8 Beta 2 - will it be dropped soon?

You'll see Beta2 ship later this week - so only a few more days now.

Thanks,

Scott

# re: First Look at IronRuby

Monday, July 23, 2007 12:30 PM by Kal Surampalli

Isn't there a Ruby.NET already? Is IronRuby a name change to Ruby.NET or, are these 2 different products? If these are different, then, pl. explain the differences between Ruby.NET and IronRuby. Thx.

# re: First Look at IronRuby

Monday, July 23, 2007 12:39 PM by Scott

Awesome! How did you get permission to use Rubyforge? Are all the lawyers away in Aruba for a junket?

# First Look at IronRuby - ScottGu's Blog

Monday, July 23, 2007 12:45 PM by First Look at IronRuby - ScottGu's Blog

Pingback from  First Look at IronRuby - ScottGu's Blog

# re: First Look at IronRuby

Monday, July 23, 2007 12:58 PM by ScottGu

Hi Kal,

>>>>>> Isn't there a Ruby.NET already? Is IronRuby a name change to Ruby.NET or, are these 2 different products? If these are different, then, pl. explain the differences between Ruby.NET and IronRuby. Thx.

Ruby.NET and IronRuby are separate Ruby implementations for .NET.  Ruby.NET was started at Queensland University in Australia.  You can find more details about it here: www.plas.fit.qut.edu.au/rubynet

IronRuby uses some of the Ruby.NET code (Microsoft licensed it), but uses the DLR library for implementing the dispatching and code compilation.

Hope this helps,

Scott

# re: First Look at IronRuby

Monday, July 23, 2007 1:00 PM by ScottGu

Hi Scott,

>>>>> Awesome! How did you get permission to use Rubyforge? Are all the lawyers away in Aruba for a junket?

All we needed to-do was ask.  Chad Fowler and Rich Kilmer (two of the core guys who run RubyForge) are great guys and were very helpful with this.

Thanks,

Scott

# re: First Look at IronRuby

Monday, July 23, 2007 1:00 PM by Matt

Is beta 2 feature complete?

# re: First Look at IronRuby

Monday, July 23, 2007 1:03 PM by ScottGu

Hi Matt,

>>>>>> Is Beta2 feature complete?

VS 2008 and .NET 3.5 Beta2 (which will be out later this week) are pretty much feature complete.  We'll do some small features additions/chanegs based on new feedback on Beta2, but 99% of the features are all there.

Hope this helps,

Scott

# re: First Look at IronRuby

Monday, July 23, 2007 1:06 PM by Greg Strockbine

I'm curious what little 'twist' is MS going to add to the Ruby language to make it their own.

# First Look at IronRuby

Monday, July 23, 2007 1:13 PM by DotNetKicks.com

You've been kicked (a good thing) - Trackback from DotNetKicks.com

# IronRuby is in town

Monday, July 23, 2007 1:15 PM by Lazy Coder

Welcome to the age of dynamic languages. Check out the post by Scott Guthrie and John Lam on the first...

# re: First Look at IronRuby

Monday, July 23, 2007 1:22 PM by ScottGu

Hi Greg,

>>>>> I'm curious what little 'twist' is MS going to add to the Ruby language to make it their own.

The IronRuby project will be hosted on RubyForge and have both non-Microsoft and Microsoft developers working on it.  The license also fully allows another group of developers to fork the code and maintain it themselves if they don't think they are doing a good job of it.  

We are definitely committed to making sure IronRuby is a first class Ruby implementation.

Thanks,

Scott

# New and Notable 178

Monday, July 23, 2007 1:37 PM by Sam Gentile

My son, like the rest of kids his age, as well as many others is spending every waking hour reading the

# IronRuby pre-alpha, dynamic languages and VS Orcas Beta 2

Monday, July 23, 2007 1:39 PM by Granville Barnett

Everybody is posting about this now, I find the pre-alpha title interesting and it's nice to see that

# re: First Look at IronRuby

Monday, July 23, 2007 1:42 PM by Justin

From what I have seen, Ruby is a great language but among the slowest (2-3x slower than PHP, from what benchmarks I have read). How will IronRuby stack up compared to Ruby in terms of speed?

# re: First Look at IronRuby

Monday, July 23, 2007 1:45 PM by Granville Barnett

Hi Scott,

When will VS support these new languages? I mean IronRuby obviously won't be supported by the VS IDE anytime soon given its infancy, but IronPython - will that have a more complete project add-in for VS Orcas sometime in the near future? At the moment I believe that debugging works nicely but the .NET libraries aren't actually synched with the intellisense for IronPython - you only get intellisense for the actual language constructs.

Oh yeh - roll on partial methods in .NET 3.5 beta 2!!!! :-)

- Granville.

# re: First Look at IronRuby

Monday, July 23, 2007 1:48 PM by .netter

what about a sample of runniny ironruby with asp.net?

# re: First Look at IronRuby

Monday, July 23, 2007 1:57 PM by ScottGu

Hi Justin,

>>>> From what I have seen, Ruby is a great language but among the slowest (2-3x slower than PHP, from what benchmarks I have read). How will IronRuby stack up compared to Ruby in terms of speed?

IronRuby is still a pretty young project, and we haven't done performance tuning yet on it.  But our initial run of the standard Ruby YARV benchmarks on today's drop look positive (3-6x performance wins in many cases for standard benchmarks).  We'll obviously need to make more progress before knowing where things will ultimately end up - but our DLR infrastructure enables languages to run really fast on .NET.

Hope this helps,

Scott

# re: First Look at IronRuby

Monday, July 23, 2007 2:05 PM by Justin

Thanks Scott,

speed has been one of my concerns with getting into Ruby and part of what I love so much about .Net.

I'll take a look at this. Great stuff!

# re: First Look at IronRuby

Monday, July 23, 2007 2:08 PM by ScottGu

Hi Granville,

>>>>>> When will VS support these new languages? I mean IronRuby obviously won't be supported by the VS IDE anytime soon given its infancy, but IronPython - will that have a more complete project add-in for VS Orcas sometime in the near future? At the moment I believe that debugging works nicely but the .NET libraries aren't actually synched with the intellisense for IronPython - you only get intellisense for the actual language constructs.

Right now IronPython provides source colorization and basic intellisense support inside VS (for example: with ASP.NET projects you get intellisense against controls in the page).  You can also use the VS debugger with it to get great debugging support.  We don't have our exact plans in place yet - but I expect similar support for both source and debugging with IronRuby in the future.  

Hope this helps,

Scott

# re: First Look at IronRuby

Monday, July 23, 2007 2:09 PM by ScottGu

Hi .netter,

>>>>>> what about a sample of runniny ironruby with asp.net?

IronRuby is still pretty early, and doesn't have enough feature support for this just yet.  But I'll post in the future once there is enough to enable this.

Hope this helps,

Scott

# re: First Look at IronRuby

Monday, July 23, 2007 2:41 PM by Rishi

This might seem counter to the idea of dynamic languages, but I was wondering (not having checked out the code myself) if features from the DLR, other additions like what you mention "Dynamic Sites", and lightweight-code generation functionality could be used in non-dynamic languages like C# or VB.NET?? Is the direction of usage one-way here, or duplex? And, if this is possible, what kind of usage scenarios can be envision?

Cheers.

Rishi

# re: First Look at IronRuby

Monday, July 23, 2007 2:43 PM by Bill Mulloch

Does anyone else no like the ruby syntax or am I just getting old? Shame there's no dynamic c# on the list...

# Microsoft Releases Pre-Alpha IronRuby Including Source

Monday, July 23, 2007 3:21 PM by Paul Andrew

As announced today on Scott Guthrie's blog Microsoft has released a pre-alpha for IronRuby. IronRuby

# IronRuby Pre-Alpha Released

Monday, July 23, 2007 3:24 PM by Javier G. Lozano

IronRuby Pre-Alpha Released

# IronRuby pre-alpha drop and Visual Studio 2008 Beta2 in few days

Monday, July 23, 2007 3:56 PM by Signs on the Sand

Jon Lam announced the very first pre-alpha drop of IronRuby - Microsoft open source (!) implementation of the Ruby language, licensed under Microsoft Permissive License. This release contains early bits of Ruby implementation for .NET based on the DLR

# { null != Steve } » Blog Archive » IronRuby - First Public Drop

Pingback from  { null != Steve }  » Blog Archive   » IronRuby - First Public Drop

# re: First Look at IronRuby

Monday, July 23, 2007 4:01 PM by Javier Lozano

Scott,

I tried the WPF sample you posted and for some reason it doesn't run.  When you have the require 'WPF', shouldn't it be require 'PresentationFramework' (since that's the name of the assembly)?

# re: First Look at IronRuby

Monday, July 23, 2007 4:43 PM by Marko Rangel

Any Rails like functionality support in the IDE to follow up after the initial release of IronRuby, or is that going to be left up to ISV's?

# IronRuby released! @ Flog

Monday, July 23, 2007 5:02 PM by IronRuby released! @ Flog

Pingback from  IronRuby released! @ Flog

# » IronRuby pre-alpha release available | The Universal Desktop | ZDNet.com

Pingback from  » IronRuby pre-alpha release available | The Universal Desktop | ZDNet.com

# IronRuby: First Look Code Now Available!

Monday, July 23, 2007 6:15 PM by JrzyShr Dev Guy

Congratulations to John Lam and all the folks on the IronRuby team. They've just released the first public

# WPF Sample in IronRuby talking via C# to Wesabe

Monday, July 23, 2007 6:26 PM by Scott Hanselman's Computer Zen

# re: First Look at IronRuby

Monday, July 23, 2007 6:58 PM by lomaxx

Hi Scott,

Just wondering, what is your target audience for the DRL? From what I can gather, it's for people already working with Ruby or python that want to leverage the .net framework?

If so, are there any or many reasons for people who are developing in a completely asp.net or VB.net winforms environment to start using the DLR technologies?

Regards

Lomaxx

# Early look at IronRuby

Monday, July 23, 2007 7:24 PM by Somasegar's WebLog

Today we shipped the first source code release of IronRuby . Both IronRuby and IronPython, released earlier

# re: First Look at IronRuby

Monday, July 23, 2007 7:27 PM by Lucas

I have VS 2008 Beta 2, and when i attempt to compile this, i get this error,

Warning as Error: Invalid search path 'C:\Program Files\Microsoft SDKs\Windows\v6.0A\lib' specified in 'LIB environment variable' -- 'The system cannot find the path specified. ' Microsoft.Scripting

Just curious how you get it built, since i see your running under 2008 beta2.

Thanks!

# F??bio Pedrosa » IronRuby Released

Monday, July 23, 2007 8:18 PM by F??bio Pedrosa » IronRuby Released

Pingback from  F??bio Pedrosa    » IronRuby Released

# Snippet on IronRuby: Aussie code inside | nickhodge.com | mungenet

Pingback from  Snippet on IronRuby: Aussie code inside | nickhodge.com | mungenet

# re: First Look at IronRuby

Monday, July 23, 2007 9:06 PM by Jeremiah Morrill

>>>>VS 2008 and .NET 3.5 Beta2 (which will be out later this week) are pretty much feature complete.  We'll do some small features additions/chanegs based on new feedback on Beta2, but 99% of the features are all there.

Are there any new WPF additions with .NET 3.5 Beta 2?  I've seen very little information on it other than FireFox XBAP support.

# re: First Look at IronRuby

Monday, July 23, 2007 10:21 PM by Jason

Hi Scott,

Is it possible to write a ruby class that's used by c#? or it works c# object to IronRuby only?

# re: First Look at IronRuby

Monday, July 23, 2007 10:44 PM by Chua Wen Ching

You'll see Beta2 ship later this week - so only a few more days now.

--> Wow. Since it is gonna be feature complete, it will be suitable to start building off something already :) Can't wait though for its release.

# re: First Look at IronRuby

Monday, July 23, 2007 11:58 PM by ScottGu

Hi Rishi,

>>>>> This might seem counter to the idea of dynamic languages, but I was wondering (not having checked out the code myself) if features from the DLR, other additions like what you mention "Dynamic Sites", and lightweight-code generation functionality could be used in non-dynamic languages like C# or VB.NET?? Is the direction of usage one-way here, or duplex? And, if this is possible, what kind of usage scenarios can be envision?

The DLR infrastructure can actually be used with any language on .NET - so it is not restricted to only be ing used by traditional scripting languages.

Having said that, some of the features like "dynamic sites" are designed for languages that don't generate strongly-typed method invocations that resolve down to vtable calls at runtime.  Because C# and VB (when in option strict mode) always do this, features like "dynamic sites" don't end up being necessary.

Hope this helps,

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 12:02 AM by ScottGu

Hi Javier,

>>>>> I tried the WPF sample you posted and for some reason it doesn't run.  When you have the require 'WPF', shouldn't it be require 'PresentationFramework' (since that's the name of the assembly)?

Have you downloaded my .zip file above?  It contains both a HelloWorldWPF.rb file as well as a WPF.rb file.  The WPF.eb file contains the require declaration for both PresentationFramework and PresentationCore - which are the two WPF assembleis you need.

Hope this helps,

Scott

# IronRubyのチューター

Tuesday, July 24, 2007 12:03 AM by OPC Diary

First Look at IronRuby - ScottGu's Blog ...

# re: First Look at IronRuby

Tuesday, July 24, 2007 12:04 AM by ScottGu

Hi Lomaxx,

>>>>>>> Just wondering, what is your target audience for the DRL? From what I can gather, it's for people already working with Ruby or python that want to leverage the .net framework?  If so, are there any or many reasons for people who are developing in a completely asp.net or VB.net winforms environment to start using the DLR technologies?

The DLR enables you to use .NET (including ASP.NET) from other languages besides the core VB and C# languages that most .NET developers use.  If you like VB and C#, then it probably doesn't make sense to consider any changes.  I enjoyed dabbling with Ruby last night when writing this blog post, but I personally love the new C# release in VS 2008 and am very happy with it.

Hope this helps,

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 12:06 AM by ScottGu

Hi Lucas,

>>>>>> I have VS 2008 Beta 2, and when i attempt to compile this, i get this error: Warning as Error: Invalid search path 'C:\Program Files\Microsoft SDKs\Windows\v6.0A\lib' specified in 'LIB environment variable' -- 'The system cannot find the path specified. ' Microsoft.Scripting

>>>>>>> Just curious how you get it built, since i see your running under 2008 beta2.

Sorry for the confusion - I think the project file might not support building it.  You should instead use the "build.cmd" batch file in the root of the IronPython directory to build it.  

Hope this helps,

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 12:10 AM by ScottGu

Hi Jeremiah,

>>>>>> Are there any new WPF additions with .NET 3.5 Beta 2?  I've seen very little information on it other than FireFox XBAP support.

There are actually a number of small improvements to WPF in .NET 3.5.  Many of these are performance improvements for core scenarios.  In addition to FireFox XBAP support, there is also new support for LINQ databinding with WPF.  I'm hoping to have the time to blog about the LINQ databinding feature in the future.

Hope this helps,

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 12:14 AM by ScottGu

Hi Jason,

>>>>>> Is it possible to write a ruby class that's used by c#? or it works c# object to IronRuby only?

I believe this is possible - although I haven't done this myself.  If you implement an interface or derive from a base class using Ruby, then you should be able to cast the object to the contract using C# and call it via early binding.  You could also probably use reflection if you wanted to invoke it via late-binding using C#.

Hope this helps,

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 12:27 AM by SoftMind

Dear Mr. Scott,

I am at confused/disappoint stage today. You have not made it clear that will Asp.Net support IronRuby in future or not.

I love asp.net and i wish i could use the ruby language just like C# to create Asp.Net projects.

IronRuby without Asp.Net support will remain like an Orphan child for ever.

Your team should make Ruby as a part of language options in VWD like (1) C# (2)VB (3) Ruby.

I was very disappointed to learn that Asp.Net team is not considering anything about this at this stage.

I was expecting few examples in IronRuby like IronPython in asp.net futures, since ruby is more popular than python.

Please clarify and boost my moral.

# re: First Look at IronRuby

Tuesday, July 24, 2007 12:30 AM by ScottGu

Hi Softmind,

>>>>>> I am at confused/disappoint stage today. You have not made it clear that will Asp.Net support IronRuby in future or not.

You will be able to use both IronPython and IronRuby to build ASP.NET applications.  IronPython works today (see this old blog post of mine for details: weblogs.asp.net/.../ironpython-for-asp-net-ctp.aspx).  IronRuby will work in the future once the IronRuby project is a little further along in their implementation of the language.

Hope this helps,

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 12:40 AM by Vikram

good to hear support for new langauge in the frame work. Do you have any list of the number and name of langauge that can run on the dot net frame work(very curious to know). Good post but dyi ng to see the orcas beta 2. My download manage is just waiting for it. I hope this will surly support vista?(I could not run orcas beta 1 in vista!)

# re: First Look at IronRuby

Tuesday, July 24, 2007 1:02 AM by Dariusz

Something totally different. I realized that each of your code snapshots (all others are fine) have a kind of blur / wash effect. Why is that?

# Ruby y .NET: ¿el inicio de una buena relación de pareja?

Tuesday, July 24, 2007 1:22 AM by .NET a 2.860 m de altura

Aquí una noticia que sospecho que le pondrá contento a Diego Camacho : hace algún

# re: First Look at IronRuby

Tuesday, July 24, 2007 1:39 AM by Samiq

[... One of this newly -for me at least- dynamic architectures surrounds is Python; and as I'm opening my mind to the "think dynamic" I found ScottGu cheering up for a different, yet quite impressive, dynamic language making it to the .NET family: IronRuby...] Pingback from http://samiqbits.blogspot.com

# IronRuby가 드디어 공개되었습니다.

Tuesday, July 24, 2007 1:45 AM by bkchung's WebLog

John Lam on Software: A first look at IronRuby 그동안 SilverLight의 DLR에 관한 이야기를 통해서 그 개발 소식이 전해졌었는데, 드디어

# re: First Look at IronRuby

Tuesday, July 24, 2007 2:08 AM by Pablo Castilla

Perhaps I am quite stupid, but I can not see the advantages, and it is quite ugly.

# re: First Look at IronRuby

Tuesday, July 24, 2007 4:51 AM by Mike

A question that is possibly related to this: how is the project for an MVC framework for ASP.NET going? Is it related to IronRuby, because Ruby is so populair in combination with Ruby on Rails? Looking at the long term plans, is IronRuby support and the ASP.NET MVC project something we can see in VS2008 (maybe a service pack) or rather in the version thereafter? I really want this and am already working with Ruby on Rails (I might switch if LINQ didn't look so good).

# [ draw.logic ] IronRuby Released, and the Dynamic Language Rising «

Pingback from  [ draw.logic ] IronRuby Released, and the Dynamic Language Rising «

# re: First Look at IronRuby

Tuesday, July 24, 2007 5:39 AM by Ruchit S.

Hi Scott,

This one is just amazing. Gonna try dis asap.

Thanks 4 this..

Ruchit S.

http://ruchitsurati.net

************************************************

# Visual Studio 2008/Orcas Beta 2 and RTM Availability

Tuesday, July 24, 2007 6:54 AM by Hauser & Wenz :: Blog

There have been some announcements this weeks, and I try to sum them up. On July 10th, Microsoft issued a press statement regarding the launch event for Windows Server 2008, Visual Studio 2008, and SQL Server 2008. The event date will take place in Los

# re: First Look at IronRuby

Tuesday, July 24, 2007 8:12 AM by Diego Guidi

IronRuby and DRL are simply amazing stuff :) I love it!!!

# IronRuby is out

Tuesday, July 24, 2007 8:49 AM by Dave's Team System Blog

Last night, the IronRuby team made the source code for IronRuby available. John Lam posted the story

# IronRuby est releasé sous licence MS-Pl avec son code source... pour le plus grand bonheur du projet Mono !

Tuesday, July 24, 2007 10:21 AM by Christophe Lauer, Blog Edition

Hier, l'équipe de IronRuby a publié le code source de IronRuby sous licence MS-Pl (aka Microsoft Shared

# » Near-feature-complete Visual Studio 2008 Beta 2 due later this week | All about Microsoft | ZDNet.com

Pingback from  » Near-feature-complete Visual Studio 2008 Beta 2 due later this week | All about Microsoft | ZDNet.com

# re: First Look at IronRuby

Tuesday, July 24, 2007 11:22 AM by Mark

Why rbx instead of irb like current ruby distributions?  Seems like equivalent functionality but different names will just become a source of annoyance for any developer who has to move between different Ruby distributions.  Or will rbx be different than irb?

# IronRuby landet | Monitoring Dalager

Tuesday, July 24, 2007 11:57 AM by IronRuby landet | Monitoring Dalager

Pingback from  IronRuby landet | Monitoring Dalager

# Visual Studio 2008 beta 2 release imminent!

Tuesday, July 24, 2007 12:37 PM by Codeflakes.net

Visual Studio 2008 beta 2 release imminent!

# JoseNet » Visual Studio 2008 ???Orcas??? Beta 2, out this week

Pingback from  JoseNet » Visual Studio 2008 ???Orcas??? Beta 2, out this week

# re: First Look at IronRuby

Tuesday, July 24, 2007 2:01 PM by ScottGu

Hi Dariusz,

>>>>>> Something totally different. I realized that each of your code snapshots (all others are fine) have a kind of blur / wash effect. Why is that?

I touched up the code-snippets in MSPaint, and it sometimes does a weird dithering thing on JPG images when it saves them.  Sorry about that!

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 2:11 PM by ScottGu

Hi Mike,

>>>>>> A question that is possibly related to this: how is the project for an MVC framework for ASP.NET going?

We have a MVC framework for ASP.NET that we are working on and will talk about more in the future.  This is not tied to any specific language - so you'll be able to use it with any .NET language (including VB, C#, IronPython, IronRuby, etc).

Hope this helps,

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 2:13 PM by ScottGu

Hi Mark,

>>>>>> Why rbx instead of irb like current ruby distributions?  Seems like equivalent functionality but different names will just become a source of annoyance for any developer who has to move between different Ruby distributions.  Or will rbx be different than irb?

We haven't closed on the final name of the interpreter.  If we used "irb" as the name, though, we would conflict if you had both installed on the same system.  You can, though, easily map irb to rbx (or whatever the final name is) if you want to avoid switching interpretter names.

Hope this helps,

Scott

# re: First Look at IronRuby

Tuesday, July 24, 2007 3:19 PM by william

"We haven't closed on the final name of the interpreter.  If we used "irb" as the name, though, we would conflict if you had both installed on the same system.  You can, though, easily map irb to rbx (or whatever the final name is) if you want to avoid switching interpretter names."

Naturally if you make it a cmdlet (i.e. compile-ruby) then you can use powershell aliases to name it anything. Plus get all the goodness of psh arguments, etc.

William

# re: First Look at IronRuby

Tuesday, July 24, 2007 4:01 PM by Florian Krüsch

Doing WPF looks a little bit cumbersome shortcutting classes/namespaces, but that's totally ok for a 'pre-alpha'.

I can image how in future we will build WPF apps using C# libraries and Ruby-based, Rails-like internal DSLs. Great stuff... and congrats as well for hiring Scott Hanselmann :)

cheers,

Florian

# Primeiros bits do IronRuby

Tuesday, July 24, 2007 4:05 PM by Console.Write(this.Opinion)

Primeiros bits do IronRuby

# re: First Look at IronRuby

Tuesday, July 24, 2007 4:08 PM by Daniel

Your team is saving Microsoft. I wonder what that feels like.

# re: First Look at IronRuby

Tuesday, July 24, 2007 4:22 PM by Joe F.

I'm very interested in using Ruby on a product I'm developing for my company.  If I used Ruby.NET for the time being, would I be able to bring that work into IronRuby when it RTMs?  Along those lines, will we be able to take code written in pure Ruby and use it directly in IronRuby?

# IronRuby... Finally

Tuesday, July 24, 2007 4:59 PM by The Next Web in Malaysia! @ Rohan Thomas' Blog

For those who have been waiting, ScottGu relieves you .... Cheers!

# Orcas Beta 2 due this week?

Tuesday, July 24, 2007 6:08 PM by CodeClimber

Orcas Beta 2 due this week?

# re: First Look at IronRuby

Tuesday, July 24, 2007 7:05 PM by William

"Orcas Beta 2 due this week?"

Yes.  OK I am ready...Where is the link? I must use right now :-)

# Chris Donnan : Programming - Brooklyn Style - IronRuby - ooh - aah - ooh - aah

Pingback from  Chris Donnan : Programming - Brooklyn Style -  IronRuby - ooh - aah - ooh - aah

# re: First Look at IronRuby

Wednesday, July 25, 2007 12:01 AM by WebReservoir

Hello Scott,

I have heard nothing about Dynamic VB since long. What i have heard is... "its one of the 4languages for DLR "

VB is Microsoft baby, and Dynamic VB should be another one. It would be great if you can point out few things about Dynamic VB as well, since developers, students, new commers can decide which way to go deciding any one from 6 languages.

# re: First Look at IronRuby

Wednesday, July 25, 2007 1:25 AM by Boy Bawang

Hi! Whats the advantage of IronRuby over Gardens Point Ruby? Are these products competing eachother?

I learned that both are written in c#. I wonder why a compiler is not written in c++ for better performance.

# re: First Look at IronRuby

Wednesday, July 25, 2007 5:37 AM by Wellick

>>>We have a MVC framework for ASP.NET that we are working on and will talk about more in the future.

Care to elaborate on this a little bit? =)

# WPF: Trader Surface « Tales from a Trading Desk

Wednesday, July 25, 2007 4:19 PM by WPF: Trader Surface « Tales from a Trading Desk

Pingback from  WPF: Trader Surface « Tales from a Trading Desk

# VS2008 Beta 2 - Counting down

Wednesday, July 25, 2007 6:41 PM by My VSTS Blog

TSS put me onto a comment reply on Scott Guthrie's blog where he states "You'll see Beta2 ship later

# re: First Look at IronRuby

Wednesday, July 25, 2007 7:55 PM by anonymous

Are there features of the DLR that you think would apply to Domain Specific Language scenarios?

# Visual Studio 2008 Beta 2 on Thursday

Wednesday, July 25, 2007 9:44 PM by Front Page News

Visual Studio 2008 Beta 2 on Thursday Microsoft will announce Thursday morning the release of Visual Studio 2008 Beta 2. According to Scott Guthrie, the general manager of Microsoft's Developer ...

# Visual Studio 2008 Beta 2 deve ser lan??ado nesta semana « Pc Style

Pingback from  Visual Studio 2008 Beta 2 deve ser lan??ado nesta semana « Pc Style

# Is IronRuby mathematically challenged?

Thursday, July 26, 2007 5:42 AM by Is IronRuby mathematically challenged?

Pingback from  Is IronRuby mathematically challenged?

# Dynamic Languages support in .NET

Thursday, July 26, 2007 7:41 AM by Philippe's ISV Blog

If you wondered what Dynamic languages are and what it means to have a DLR next to the CLR in .NET, read

# Dynamic Languages support in .NET

Thursday, July 26, 2007 7:48 AM by Noticias externas

If you wondered what Dynamic languages are and what it means to have a DLR next to the CLR in .NET, read

# re: First Look at IronRuby

Thursday, July 26, 2007 8:34 AM by Nektar

Can the public contribute to the development of Ironpython like it will be able to do to Ironruby shortly? Or is Ironpython only provided in its object and source form for someone to build bt you do not accept community contributions for it.

# Orcas Beta 2 - guidmaster??s .NET blog

Thursday, July 26, 2007 11:46 AM by Orcas Beta 2 - guidmaster??s .NET blog

Pingback from  Orcas Beta 2 - guidmaster??s .NET blog

# IronRuby now available in Pre-Alpha (and open sourced too)

Thursday, July 26, 2007 12:19 PM by Let's Kill Dave!

I'm a few days behind the curve, but the Microsoft Developer Division (the guys that make that little

# Blog-a-Styx : Visual Studio 2008 Beta 2 cette semaine !

Thursday, July 26, 2007 12:46 PM by Blog-a-Styx : Visual Studio 2008 Beta 2 cette semaine !

Pingback from  Blog-a-Styx : Visual Studio 2008 Beta 2 cette semaine !

# IronRuby Pre-Alpha available for download! « Patrick’s Bytes

Pingback from  IronRuby Pre-Alpha available for download! « Patrick’s Bytes

# » Microsoft’s Opensource Strategy Website

Thursday, July 26, 2007 1:35 PM by » Microsoft’s Opensource Strategy Website

Pingback from  » Microsoft’s Opensource Strategy Website

# » Orcas Beta 2 - guidmaster??s .NET blog