1
vote
2answers
32 views
Viability of Ruby for Cross-Platform Development With Native Toolkits?
Let's say that I was writing a closed sourced commercial piece of software which was to be deployed in the following situations: Windows Desktop App built on .Net, ActiveX control, …
0
votes
1answer
30 views
Key based authenication with net-sftp in Ruby
Hello,
I want to be able to use SFTP to login into a number of servers and download certain files to help debug issues as and when they arise. While we could use a client, we wan …
0
votes
1answer
39 views
IronRuby performance issue while using Variables
Here is code of very simple expression evaluator using IronRuby
public class BasicRubyExpressionEvaluator
{
ScriptEngine engine;
ScriptScope scope;
public Exception LastExcepti …
1
vote
5answers
124 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 fo …
8
votes
8answers
367 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. …
0
votes
3answers
59 views
Cucumber on IronRuby incredibly slow to start?
I'm using IronRuby 0.9.1 and cucumber 0.4.0. I also have MRI 1.8 installed.
I've created the following wrapper script (icucumber.bat) to run cucumber on IronRuby
@ECHO OFF
REM Th …
0
votes
2answers
25 views
Creating VIsual Studio Addins with Iron Ruby
Some time ago at one of the .Net conferences John Lam gave a demonstration of how to use Iron Ruby to create VS add in's. At the time it seemed alot easier than what you currently …
0
votes
1answer
107 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 IronRub …
1
vote
1answer
129 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 an …
0
votes
3answers
50 views
Guidance with SQLite-ruby in IronRuby
What is the approach to get SQLite-ruby working in IronRuby?
1
vote
1answer
52 views
How to register a module to ruby?
How do I register a module to ruby with IronRuby and C#?
0
votes
2answers
61 views
Calling a generic method from IronRuby
Hi
How can I call a generic method (.NET 3.5 SP1) from IronRuby v0.9?
Trying to do something as obj.method(:method_name).of(String).call seems not to work as "of" is an unknown me …
0
votes
2answers
16 views
How do I automatically add dlls to ironruby engine.
Hi,
I want to automatically add loaded dll of the current application into ironruby engine so that each time I execute a script I won't specify the "require" script anymore.
Than …
0
votes
2answers
91 views
Embedding IronRuby in C# and DateTime
When I embed IronRuby what is the proper way to get a reference to either Ruby's DateTime/Date classes or .NET's System.DateTime. I'm running into errors when I try
require 'date' …
0
votes
2answers
121 views
Run Shoes clone in IronRuby
I found cool article on Creating cross platform GUI's with IronRuby where someone re-created the Shoes DSL by _why the lucky stiff in IronRuby.
Awesome right!
So, I downloaded …
