In Ruby main, you can embed IRB inside of a Ruby script as described here. Is there a way to do something similar with IIRB inside an IronRuby script?
+1
A:
http://wiki.github.com/ironruby/ironruby/debugging might be useful to you ("repl binding" is the same as the one above, I believe, and is what I use).
rogerdpack
2010-08-31 17:45:25
We're using that exact `repl(binding)` class right now, but we want to drop into actual IIRB for a few reasons, mainly multiline support. Thanks for your response, though!
kerkeslager
2010-09-01 13:34:39
the code you mention should work in ironruby then--does it not?
rogerdpack
2010-09-01 23:25:59
It doesn't quite work in IronRuby because it makes use of the Ruby IRB class, but we couldn't find an equivalent IIRB class.
kerkeslager
2010-09-07 15:36:48
seems to work fine here: http://gist.github.com/568628 what IIRB class are you referring to?
rogerdpack
2010-09-07 16:34:26