-
-
Notifications
You must be signed in to change notification settings - Fork 1k
2.3.0 rspec:install failure on autotest directory copy #283
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'm having the same issue as @adamaig. The output I'm having is:
|
Fix bug in which rspec:install generator tries to copy autotest files
|
How do you make the missing directory in gem? |
Now when I run rspec:install it doesn't install autotest at all. Should I be worried? I'm running within rvm if that helps. |
@chrisjschmitt - nope. See release notes for rspec-core-2.3.0: https://github.com/rspec/rspec-core/blob/master/History.markdown |
creating autotest directory solved the problem. Thanks. |
Rspec::Generators::InstallGenerator::copy_autotest_files fails now because there is no autotest directory in the templates directory in the gem after discover.rb was removed.
This is preventing the generator from completing the install task.
A quick solution for those with this problem is to make the missing directory in the gem. (i.e., mkdir rspec-rails-2.3.0/lib/generators/rspec/install/templates/autotest )
The text was updated successfully, but these errors were encountered: