[rspec-users] Problems running RSpec 2 with autotest/autospec
Michelle Pace
lists at ruby-forum.com
Tue Dec 14 20:59:02 EST 2010
Luis Lavena wrote in post #968399:
> You're using Bundler, bundler needs a "manifest" of gems and versions
> that your application use. Look for "Gemfile" in the root of your
> application.
*yay*! Thanks Luis (and David) for all your patience. I've finally got
it working and can now go onto Page 19 of this book.
I looked for the automatically generated gemfile and found that it was
completely out of date with version numbers so I updated it to the
versions I have.
Thanks again for all the help and putting up with my new-be-ness.
Cheers,
Michelle
THE OLD (ORIGINAL):
-----------------------------------
group :development do
gem "rspec", "~> 2.1.0"
gem "bundler", "~> 1.0.0"
gem "jeweler", "~> 1.5.1"
gem "rcov", ">= 0"
end
I CHANGED IT TO THIS AND IT WORKS:
-----------------------------------
group :development do
gem "rspec", "~> 2.3.0"
gem "bundler", "~> 1.0.7"
gem "jeweler", "~> 1.5.1"
gem "rcov", ">= 0"
end
--
Posted via http://www.ruby-forum.com/.
More information about the rspec-users
mailing list