Error after installing em-rspec
After installing em-rspec and prepending require 'em-rspec' to the top of my spec file, I get the following error:
https://gist.github.com/3899668
What version of RSpec are you using?
This was my fault, actually. I commented out one of my tests and now everything is working fine.
Please disregard my last comment. I get the following error whenever I try to initialize the rails environment (using rails console for example):
https://gist.github.com/3899668
I'm using rspec version 2.11.1
what is the value of RAILS_ENV? In the console it is "development" by default. Try setting RAILS_ENV to "test" by invoking rails console like this RAILS_ENV=test rails console
after running RAILS_ENV=test rails console I get the following error:
https://gist.github.com/3908218
Please paste your gemfile
https://gist.github.com/3908248
Did you ever get a chance to look into this?