I\'m following codeschool\'s class on rspec. Installing worked fine. I made a file called rspec-zombie for the project. Fine. But when I tried rspec --init in powershell, I
This is a windows regression in RSpec 3.1 that we are working on:
Above issues were fixed.
Here's how I finally fixed this crap:
gem uninstall rspec
gem uninstall rspec-core rspec-expectations rspec-mocks rspec-support
gem install rspec -v 2.14.1
Basically, newer versions of rspec are broken on Windows. Don't use them. Do this and rspec works just fine.