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 This is to tell IronRuby where to find gems.
SET GEM_PATH=c:\ruby\lib\ruby\gems\1.8
@"C:\ironruby\bin\ir.exe" "c:\ruby\bin\cucumber" %*
Navigating to cucumber-0.4.0\examples\i18n\en and running:
cucumber features // takes about 4 seconds to complete
icucumber features // takes about 30 seconds to complete
Cucumber on IR is MUCH slower to initialize, so it seems. Is this typical? Or did I set this up incorrectly?