Added default .gitignore (this is just recognizing Git market share, don't throw a hissy if you use another SCM) [DHH]

This commit is contained in:
David Heinemeier Hansson
2009-12-27 17:48:11 -08:00
parent f095e6f59d
commit a642edbef3
3 changed files with 6 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
*Edge*
* Added default .gitignore (this is just recognizing Git market share, don't throw a hissy if you use another SCM) [DHH]
* Added cookies.permanent, cookies.signed, and cookies.permanent.signed accessor for common cookie actions [DHH]. Examples:
cookies.permanent[:prefers_open_id] = true

View File

@@ -49,6 +49,7 @@ module Rails::Generators
def create_root_files
copy_file "README"
copy_file "gitignore", ".gitignore"
template "Rakefile"
template "config.ru"
template "Gemfile"

View File

@@ -0,0 +1,3 @@
db/*.sqlite3
log/*.log
tmp/**/*