guard-jruby-rspec
guard-jruby-rspec copied to clipboard
RSpec on JRuby without the startup cost.
This ability will give us resolve issues related to missing constants, loading/requiring files.
Overcomes deprecation issue: https://github.com/jkutner/guard-jruby-rspec/issues/41
Fantastic Gem, solved a massive headache for me. I'm encountering a slightly annoying deprecation warning when using with Rspec 3.2.2: > The Guard::RSpec::Formatter::NotificationRSpec formatter uses the deprecated formatter interface not...
Hi there, Upgrading guard to latest 2.2.2 breaks guard-jruby-rspec, which fails on 'guard' startup. Error message: 19:23:42 - ERROR - Invalid Guardfile, original error is: > [#] wrong number of...
Once I was able to get non-spec classes reloading on changes with the Guard 1.1 fix in #17, I am receiving a ton of "already initialized constant" errors. I'd rather...
Hi, First off, this project is awesome, it's what we've been looking for to make our JRuby on Rails specs faster! We ran into two issues: 1, the latest gem...
Hi! When using guard-jruby-rspec for model testing, everything works as expected - when saving a file, tests are run. But there's an issue w/ capybara/rspec integration tests - You can...
The environment is JRuby 1.7.3 on Mac OS X 10.8.4, with rbenv 0.4.0. I've included the stack trace, the Gemfile and the Guardfile. The gist of it (no pun intended)...
Right now I'm working on a module that will kick in for rails projects that will use `ActionDispatch::Reloader` to reload rails classes the right way (like it does in development...
The first time around all of my tests pass. The second time around I have failures related to ActiveRecord equality comparisons. This fails for example ``` ruby User.deactivated.should include(user) ```...