Comment on Rails 4.1.0 releasedparentComments−Podeau12ysecrets.yml is not in .gitignore by default−eggbrain12yJust checked -- you are right. I was using Rails Composer for one of the apps I checked, which does include it by default.−Podeau12yThey also removed database.yml from the default .gitignore ... I don't understand why?−arnvald12yThat makes sense, since database.yml is not going to contain any sensitive data anymore (passwords and usernames will be stored in secrets.yml), this file can be safely stored in repository.
Comments
secrets.yml is not in .gitignore by default
Just checked -- you are right. I was using Rails Composer for one of the apps I checked, which does include it by default.
They also removed database.yml from the default .gitignore ... I don't understand why?
That makes sense, since database.yml is not going to contain any sensitive data anymore (passwords and usernames will be stored in secrets.yml), this file can be safely stored in repository.