
.net - IronRuby performance? - Stack Overflow
Aug 21, 2009 · While I know IronRuby isn't quite ready for the world to use it, I was wondering if anyone here tried it and tested how well it faired against the other Rubies out there in terms of raw performance...
IronRuby on Rails with IIS 7 - Stack Overflow
Aug 19, 2010 · I'm trying to get a Rails app built with IronRuby running on IIS 7. I followed all the tutorial given on the IronRuby site but I can't seem to get it to work. The app runs fine hosted under WebBric...
c# - IronRuby as a scripting language in .NET - Stack Overflow
Nov 21, 2010 · I want to use IronRuby as a scripting language (as Lua, for example) in my .NET project. For example, I want to be able to subscribe from a Ruby script to specific events, fired in the host application, and call Ruby methods from it.
asp.net - Is IronRuby Dead? - Stack Overflow
Feb 11, 2012 · IronRuby and IronPython were transitioned over to the community for development a little over a year ago by Microsoft. It's not dead, just hasn't seen a release in a while. Other languages of varying similarity are Scala, Clojure, and F# (which is …
Getting Started with IronRuby on Rails - Stack Overflow
Dec 2, 2009 · Can somebody point me to a tutorial and/or Getting Started document to get IronRuby running Rails? I'm particularly interested in a detailed, step-by-step reference, not general guidelines.
How to use an IronRuby block with a C# method - Stack Overflow
May 24, 2011 · For the most part, IronRuby Procs and lambdas are interchangeable with CLR Actions, Funcs, delegate types, and dynamic objects. However there's little Ruby syntactic sugar over this, other than some call-site conversions.
IronRuby 1.1.1 Released! - IronRuby - Ruby-Forum
Oct 22, 2010 · The IronRuby team is pleased to announce the release of IronRuby 1.1.1 for .NET Framework 4, Silverlight 4 and Windows Phone 7, and IronRuby Tools for Visual Studio! All of these are of Alpha quality, the last stable …
Has anyone tried running IronRuby.Rack through Kayak?
Jul 31, 2010 · I recently learned about kayak, an HTTP server written in C# (i.e. not through IIS). I'm wondering if anyone has tried hooking up IronRuby to run Rack through this platform?
IronRuby 1.1.1 Released! - IronRuby - Ruby-Forum
Oct 27, 2010 · The IronRuby team is pleased to announce the release of IronRuby 1.1.1 for .NET Framework 4, Silverlight 4 and Windows Phone 7, and IronRuby Tools for Visual Studio!
How to set handler for WebRequest.GetResponseAsync in IronRuby?
Aug 11, 2016 · IronRuby may let you skip generic type specialisations That was the non-generic Task, here is the fully typed version for your problem: action = Action[Task[WebResponse]].new { process_request( sender, e ) }