rspec / rspec-rails

RSpec for Rails 7+
https://rspec.info
MIT License
5.19k stars 1.04k forks source link

Could not find "autotest" in any of your source paths. #284

Closed airy closed 13 years ago

airy commented 13 years ago

After "gem update" command, rspec-rails got updated and it cant find autotest.

$ gem list

* LOCAL GEMS *

abstract (1.0.0) actionmailer (3.0.3) actionpack (3.0.3) activemodel (3.0.3) activerecord (3.0.3) activeresource (3.0.3) activesupport (3.0.3) arel (2.0.6) autotest (4.4.6) autotest-notification (2.3.1) bcrypt-ruby (2.1.2) bson (1.1.4) bson_ext (1.1.4) builder (3.0.0, 2.1.2) bundler (1.0.7) capistrano (2.5.19) capybara (0.4.0) celerity (0.8.5, 0.8.4) childprocess (0.1.5, 0.1.4) configuration (1.2.0) cucumber (0.10.0, 0.9.4) cucumber-rails (0.3.2) culerity (0.2.12) daemon_controller (0.2.5) database_cleaner (0.6.0) devise (1.1.5) diff-lcs (1.1.2) erubis (2.6.6) factory_girl (1.3.2) factory_girl_rails (1.0) fastthread (1.0.7) ffi (1.0.1, 0.6.3) file-tail (1.0.5) gherkin (2.3.2, 2.2.9) haml (3.0.24) heroku (1.14.8) highline (1.6.1) i18n (0.5.0) json (1.4.6) json_pure (1.4.6) launchy (0.3.7) machinist (2.0.0.beta2) mail (2.2.12, 2.2.11) mime-types (1.16) mongo (1.1.4) mongoid (2.0.0.beta.20) net-scp (1.0.4) net-sftp (2.0.5) net-ssh (2.0.23) net-ssh-gateway (1.0.1) nokogiri (1.4.4) passenger (3.0.1, 3.0.0) pickle (0.4.3) polyglot (0.3.1) rack (1.2.1) rack-mount (0.6.13) rack-test (0.5.6) rails (3.0.3) railties (3.0.3) rake (0.8.7) RedCloth (4.2.3) rest-client (1.6.1) rspec (2.3.0, 2.2.0) rspec-core (2.3.0, 2.2.1) rspec-expectations (2.3.0, 2.2.0) rspec-mocks (2.3.0, 2.2.0) rspec-rails (2.3.0, 2.2.1) rubyzip (0.9.4) selenium-webdriver (0.1.1) spruz (0.2.2) sqlite3-ruby (1.3.2) term-ansicolor (1.0.5) thor (0.14.6) treetop (1.4.9) tzinfo (0.3.23) warden (1.0.3, 1.0.2) will_paginate (3.0.pre2) xpath (0.1.2) yard (0.6.3) ZenTest (4.4.2, 4.4.1)

$ cat Gemfile source 'http://rubygems.org'

gem 'rails', '3.0.3'

Bundle edge Rails instead:

gem 'rails', :git => 'git://github.com/rails/rails.git'

Use unicorn as the web server

gem 'unicorn'

Deploy with Capistrano

gem 'capistrano'

To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)

gem 'ruby-debug'

gem 'ruby-debug19'

Bundle the extra gems:

gem 'bj'

gem 'nokogiri'

gem 'sqlite3-ruby', :require => 'sqlite3'

gem 'aws-s3', :require => 'aws/s3'

Bundle gems for the local environment. Make sure to

put test-only gems in this group so their generators

and rake tasks are available in development mode:

group :development, :test do

gem 'webrat'

end

group :development, :test do gem 'autotest' gem 'rspec-rails' gem 'cucumber-rails' gem 'capybara' gem 'factory_girl_rails' gem 'database_cleaner' gem 'launchy' end

dchelimsky commented 13 years ago

Duplicate: #283

airy commented 13 years ago

ops, my bad