-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specs should run in an embedded runtime #4
Comments
I did some experimenting with jruby-sandbox. It creates new Ruby VM instances to run code in, which is exactly what we want. There were several problems with this approach:
I think we need to wait for VM cloning to become a possibility. |
As long as we restrict the guard-jruby-rspec code to classes under |
Mostly it's fine. I have a feeling that if there are any big issues, my team will come across them as we start using this. |
Right now, the specs run in the same runtime as guard itself. This really only causes problems when running guard-jruby-rspec against itself! But it would be best to run the specs in an embedded RedBridge runtime.
The text was updated successfully, but these errors were encountered: