Tagged Questions

IronRuby is an open-source implementation of the Ruby programming language which is tightly integrated with the .NET Framework.

learn more… | top users | synonyms

46
votes
7answers
28k views

How do I update Ruby Gems from behind a Proxy (ISA-NTLM)

Firewall I'm behind is running Microsoft ISA server (NTLM only mode), anyone have success getting their Ruby gems to install/update via Ruby SSPI gem or other method? ... or am I just being lazy? ...
40
votes
15answers
9k views

Limitations in running Ruby/Rails on windows

In the installation documentation to RoR it mentions that there are many limitations to running Ruby on Rails on Windows, and in some cases, whole libraries do not work. How bad are these ...
9
votes
2answers
537 views

Redmine with IronRuby (Windows)?

Has anyone tried to run Redmine using IronRuby? Is it possible?
9
votes
1answer
833 views

Storing ASP.Net MVC Views in the Database

For an ASP.Net MVC application, I'm interested in storing some views and/or partial views in the database so that a few semi-technical users can do some basic view logic. Does anyone have any tips or ...
9
votes
5answers
3k views

Getting Started with IronRuby on Rails

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.
8
votes
8answers
2k views

Extending C# .NET application - build a custom scripting language or not?

I need to build a scripting interface for my C# program that does system level testing of embedded firmware. My application contains libraries to fully interact with the devices. There are separate ...
7
votes
1answer
202 views

Is it possible to host the .Net DLR in an “idiot-proof” sandbox?

I would like to host the Dynamic Language Runtime (DLR) in such a way that users who run arbitrary scripts in it cannot bring the process down? The DLR hosting spec describes how to host the DLR in a ...
7
votes
1answer
269 views

How to use IronRuby or IronPython together with c# in Web/Windows Form?

I am very interesting in the dynamic language runtime of .net, and saw IronRuby/IronPython is built on top of it. I cannot find some example which utilize the dynamic of Ruby/Python from within c#, ...
7
votes
1answer
629 views

IronRuby as a scripting language in .NET

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 ...
7
votes
6answers
1k views

is F# to IronPython/IronRuby as C# is to VB.NET?

I just listened to podcast of Chris Smith talking about F# in which he talks about how F# is a language which allows you to approach problems in a different way than in C#/VB.NET, i.e. instead of ...
7
votes
4answers
668 views

Which ruby interpreter are you looking forward to?

There are multiple Ruby implementations in the works right now. Which are you looking forward to and why? Do you actively use a non-MRI implementation in production? Some of the options include: ...
6
votes
0answers
91 views

IronRuby 1.3.1 VS 2010 SP1 Installation Issue

I've downloaded the latest release of IronRuby from codeplex and ran the install with no issues. However when I come to create a project i receive the message: IronRuby installation not found. ...
6
votes
3answers
2k views

Iron Python / Iron Ruby EXE

I've always had this dream of creating a 'real exe' from a scripting language. With the available of DLR-based implementations of Python and Ruby, is this getting any closer to reality? I'd like to ...
5
votes
2answers
400 views

Calling IronRuby from C# with a delegate

Is it possible to call an IronRuby method from C# with a delegate as parameter in such a way that yield would work? The following gives me a wrong number of arguments (1 for 0) exception. ...
5
votes
3answers
333 views

Making the Case for IronRuby and IronPython

I guess everyone has already heard the news about some key developers leaving the Dynamic Languages team due to what they perceive as waning support for Dynamic Languages at Microsoft. I'm quite fond ...
5
votes
3answers
864 views

Would you recommend Iron Ruby, Iron Python, or PowerShell for making a C# application a script host?

After some quick tinkering, right now I'm leaning towards powershell for two main reasons (note these a purely my opinions and if they are wrong, I'd love to know!!!): 1) It's simple to create a ...
5
votes
1answer
1k views

Getting Rails Application Running Under IronRuby Rack

Anyone else playing with ironruby? I have successfully got the IronRuby.Rails.Example project running on my local machine under IIS 5.1. I am now attempting to get my own demo rails site running in ...
5
votes
2answers
1k views

Alternative languages with MonoTouch

MonoTouch is always mentioned along with C#. Are the framework and toolset actually limited to C#, or do other CLR languages like IronRuby and F# work as well?
5
votes
7answers
447 views

How will Python and Ruby applications be affected by .NET?

I'm curious about how .NET will affect Python and Ruby applications. Will applications written in IronPython/IronRuby be so specific to the .NET environment, that they will essentially become ...
5
votes
10answers
5k views

Ironruby IDE

Which IDE if any, are people using to develop Ironruby in?
5
votes
6answers
626 views

Using DLR from Unmanaged Code

Is it possible to call managed code, specifically IronRuby or IronPython from unamanaged code such as C++ or Delphi? For example, we have an application written in Delphi that is being moved to ...
4
votes
2answers
612 views

MacRuby+IronRuby or JRuby for Desktop Applications?

For Web Applications I use Ruby on Rails. And now it's time to see if I can code Desktop Applications with Ruby. So I wonder which one I should choose. The way I see it is MacRuby+IronRuby vs JRuby. ...
4
votes
3answers
881 views

Integration of C#, F#, IronPython and IronRuby

I was told that the assembly files made from C# and F# source is interoperable as they are compiled into .NET assembly. Q1 : Does that mean that C# can call F# functions just like they are C# ...
4
votes
2answers
364 views

Pass an array from IronRuby to C#

I'm sure this is an easy fix and I just can't find it, but here goes: I have a C# class (let's call it Test) in an assembly (let's say SOTest.dll). Here is something along the lines of what I'm ...
4
votes
3answers
414 views

How to use an IronRuby block with a C# method

I'm using IronRuby and trying to work out how to use a block with a C# method. This is the basic Ruby code I'm attempting to emulate: def BlockTest () result = yield("hello") puts result end ...
4
votes
4answers
1k views

C# instead of IronRuby as an embedded “scripting” language in .NET 3.5

What is the best practice for using C# as an embedded internal scripting application for a .NET 3.5 application? I have an app with a few small IronRuby scripts in it. None of which is really ...
4
votes
1answer
522 views

Performance comparison between IronRuby and IronPython

We're aiming to implement a scripting mechanism, using DLR's Microsoft.Scripting and hosting assembly. Now, someone knows about any performance difference between IronRuby 1.0 and IronPython 2.6? To ...
4
votes
5answers
1k views

IronRuby On Rails VS. Ruby On Rails (Getting Started)

The Scenario I am a C#/ASP.NET/MVC/Silverlight developer with a few years experience. I'm trying to kickstart my Ruby On Rails learning. I'm currently trying to get a real feel for ROR. I Want To ...
4
votes
4answers
287 views

Current standard compliance level of IronPython & IronRuby

Does anyone have some numbers on this? I am just looking for a percentage, a summary will be better. Standards compliance: How does the implementation stack up to the standard language specification? ...
4
votes
6answers
962 views

Which Dynamic .NET language makes more sense to learn, Iron Ruby or Iron Python?

I'd like to take some time to learn more about dynamic languages built on top of the DLR and I'm not sure which language would be better to learn. Having limited time, I really only have time to look ...
4
votes
10answers
758 views

Getting Started with Ruby Development [closed]

What are some good online tutorials/quick starts/screencasts to get up to speed on Ruby development? I recently read Brad Wilson's Ruby article in the Sep/Oct 2008 issue of CoDe magazine and would ...
3
votes
1answer
96 views

ASP.net MVC with IronRuby?

Does asp.net mvc development necessarily means c# should be in it? Is it painful to use IronRuby(is it possible?) and how ironruby differs from ruby?
3
votes
1answer
130 views

How to call a C# IEnumerable from IronRuby

I have a C# method: public static IEnumerator getPixels(Picture picture) { for (int x=0; x < picture.width; x++) { for (int y=0; y < picture.height; y++) { yield return ...
3
votes
1answer
154 views

Is it possible to use IronPython and IronRuby side by side in the same Application?

I get a warning in Visual Studio when I reference the latest version of Microsoft.Scripting (the one included with IronPython). Is it possible to deploy / use them side by side in the same ...
3
votes
3answers
761 views

Can I compile IronRuby project in VS2010 into DLL/exe file?

After created IronRuby project in VS2010 by using IronRuby v1.1.x, I was able to use almost .NET library by importing them. But can't actually compile ironruby into exe/DLL. I see the build option but ...
3
votes
2answers
177 views

Why do some WPF binding fail against IronRuby properties?

So, lets say I have two nearly identical classes in C# and Ruby: C# public class Test { public Test() { ImageLocation = "http://www.ironruby.net/@api/deki/site/logo.png"; } ...
3
votes
3answers
343 views

How do I embed iron ruby into a c# program?

I want to embed iron ruby into a mud that I am creating and for some reason I'm having trouble finding the correct examples to get started. All I want to do is create a game where 'you' the player ...
3
votes
1answer
640 views

IronRuby on Rails with IIS 7

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 WebBrick ...
3
votes
2answers
261 views

Creating WCF Services using Dynamic Languages and DLR

I was curious how anyone would go about creating WCF based services using a dynamic language like IronPython or IronRuby. These languages do not have the concept of interfaces. How would someone ...
3
votes
4answers
172 views

Capturing Standard Output from an IronRuby Script using the DLR APIs

I have a very simple test.rb file: puts "Hello World" I want to execute this file within c#, eg: var runtime = Ruby.CreateRuntime(); runtime.ExecuteFile("C:\test.rb"); How can I capture the ...
3
votes
2answers
895 views

IronRuby - how to require .NET assemblies without strong name?

This page on the IronRuby help website talks about being able to 'require' some well-known assemblies such as System.Windows.Forms without needing to crank out the entire ...
3
votes
2answers
2k views

ASP.NET MVC 2 - Implementing custom Metadata and Validator Providers

With the preview 2 release of ASP.NET MVC 2, we now have base classes to implement our own custom providers for metadata and validation. Specifically, with ModelMetadataProvider and ...
3
votes
2answers
810 views

Ruby approach to data access available in IronRuby

Coming from the Ruby community and approching IronRuby for desktop application development, I have little interest in using a .NET based ORM such as Linq. I want to use the ruby-way of data access ...
3
votes
3answers
839 views

Watir with IronRuby!

Has anyone used Watir with IronRuby successfully? I am getting an error that the required file 'Watir' was not found. What path do I need to set to get this file to work in IronRuby? For some reason ...
3
votes
1answer
310 views

How can I use Ruby code in .NET?

I'd like to use a RubyGem in my C# application. I've downloaded IronRuby, but I'm not sure how to get up and running. Their download includes ir.exe, and it includes some DLLs such as IronRuby.dll. ...
3
votes
2answers
211 views

IronRuby - .NET 4.0 - Question Marks and Exclamations at the End of Method Names

Just curious how is the .NET 4.0 CLR world going to call methods ending in question marks and exclamations? What will the syntax look like calling from C# or VB.NET?
3
votes
1answer
802 views

Calling C# from IronRuby

I have created a small C# class in a library. using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace helloWorldLib { public class Greeter { ...
3
votes
1answer
319 views

How do I Implement an interface in IronRuby that includes CLR Events

I'm experimenting with IronRuby and WPF and I'd like to write my own commands. What I have below Is as far as I can figure out. class MyCommand include System::Windows::Input::ICommand def ...
3
votes
5answers
190 views

What are the options for dynamically-typed .NET web development at this time?

What are you options for dynamically-typed .NET web development at this time? Ruby on Rails with IronRuby? Django (with a few alterations) and IronPython? Don't feel like going the Phalanger route. ...
3
votes
1answer
190 views

Is it possible to halt a running DLR/IronPython/IronRuby script

I have an application that executes user generated IronRuby scripts where each thread executes on its own thread. The issue I have is that certain events can occur that require the IronRuby script to ...

1 2 3 4 5