Alex Chaffee
Alex Chaffee
assert_select is apparently using Test::Unit but you're only including the rspec adapter. Try requiring the test_unit adapter too and see if that works. require 'wrong/adapters/test_unit'
Another Erector spinoff is https://github.com/ageweke/fortitude which is a bit cleaner codebase and more up to date with the latest Rails. I've been using it on a client project and (apart...
Both Erector and Fortitude use constructors to initialize view objects (because, you know, OO), so it would be easy to pass in a cell as a parameter that then turns...
fyi I was having trouble with `gem install termios` and needed to do `gem install ruby-termios` instead... see [this SO answer](http://stackoverflow.com/a/14528685/190135) for more details
This might be an adapter issue. The fallback polling adapter can take a lot longer. See https://github.com/guard/listen#listen-adapters for more info. Can you try to `gem update listen rerun` and see...
I think an additional command-line param / config file setting like `--wait-for-port 1234` would be the easiest way.
I don't know much about JRuby, but if it doesn't support `fork` then I doubt there's much `rerun` can do. Fortunately, `rerun` is independent from your own JRuby app; you...
Oh wait, v0.11 was before we switched from `fork`/`exec` to `spawn`. Can you try with the newly-released v0,12?
Confirmed. I should note that the keypresses are only duplicated on the output stream; the input appears to be correct (one character per key gets in to the console app)....
Workaround: use new `--background` (`-b`) option when debugging.