Hey all, Just a heads up about a bug related to configuring the rspec gems in your rails 2.1.1 projects:
http://rspec.lighthouseapp.com/projects/5645-rspec/tickets/577 Apparently, if you config.gem both rspec and rspec-rails 1.1.9 w/ rspec first, you'll get an error: # DON'T DO THIS: config.gem 'rspec', :lib => 'spec', :version => '1.1.9' config.gem 'rspec-rails', :lib => 'spec/rails', :version => '1.1.9' The workaround is to either reverse these lines: # OK config.gem 'rspec-rails', :lib => 'spec/rails', :version => '1.1.9' config.gem 'rspec', :lib => 'spec', :version => '1.1.9' or just require rspec-rails if you're using rubygems >= 1.2 (since installing rspec-rails will, by default, install rspec) # OK config.gem 'rspec-rails', :lib => 'spec/rails', :version => '1.1.9' Keep your eye on the ticket (http://rspec.lighthouseapp.com/projects/5645-rspec/tickets/577) to see when this is resolved. Cheers, David _______________________________________________ rspec-users mailing list rspec-users@rubyforge.org http://rubyforge.org/mailman/listinfo/rspec-users