Category Archives: IronRuby

Running NUnit with Rake from TeamCity

I ran into some trouble when I tried to get TeamCity to run my unit tests from a rake script. After some google:ing around and trial error I got the folowing working with both command line and TeamCity: TEAMCITY_NUNIT_RUNNER = ENV["teamcity.dotnet.nunitlauncher"] NUNIT_EXE = “tools/NUnit/nunit-console.exe” OUTPUT_PATH = “output” desc “Unit tests” task :test do puts “##teamcity['progressStart' [...]

Trouble installing gems like irake?

I found myself in some trouble installing some gems using IronRuby and igem, including rake, the errormessage wasn’t really clear to me. After some google-ing around I found the swithches to get a better one: igem install rake –verbose –debug I guess I could had poked around the gem help commands too but hey – [...]