Created
June 12, 2016 14:28
-
-
Save brianbier/55e2a186bea230aa59750f92d1da5f34 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Just a quick note on the problem a couple of you were having yesterday where a rails generator appeared not to | |
be creating files. A zombie "spring" process from a different project was still running and so the generator was | |
actually writing files into a different application. | |
You can read about what spring does here: https://github.com/rails/spring The short version is that it's an application | |
preloader that makes running certain tasks faster by keeping parts of your app loaded in memory. | |
This makes things like running your tests faster as the app doesn't have to load from scratch every time. | |
If you don't want an app to use it, pass --skip-spring as an option to rails new. | |
If you ever think you might have a rogue spring process running, try | |
ps -ef |grep ruby to see running ruby proceses. It'll be listed there and you can terminate it with the kill command. | |
This stack overflow question also has some info on the problem: | |
http://stackoverflow.com/questions/23165506/rails-spring-breaking-generators |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment