jkutner / guard-jruby-rspec

RSpec on JRuby without the startup cost.
MIT License
62 stars 16 forks source link

Prevent spec from running twice when spec file was changed #22

Closed mostr closed 11 years ago

mostr commented 11 years ago

RSpec when run in embedded mode via RSpec::Core::Runner reloads spec files itself. Loading it one more time before specs are run causes specs to run twice. Lib files still need to be reloaded explicitly.

jkutner commented 11 years ago

thanks for the code!