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/. _______________________________________________ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users