naether
naether copied to clipboard
RSpec dependency definition too loose
The current Gemfile defines an RSpec version of >2.9.0
.
The problem is that this also means you can install versions >= 3.0 and the --default_path
alias for the --default-path
option that is uses in this project’s .spec
was removed in RSpec v3.0.0.rc1.
So it should either define a version ~> 2.x
or fix the option in the .rspec
file.
Should just update to a recent version rspec, 2.x is pretty ancient