mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
b1edc3789a
The main reason is to make bisect easier. In some points, we have a lot of git dependencies. Since we don't have the information of which commit we are referring to, bundler get the latest commit of the master branch of the dependency. This sometimes returns a version that is not compatible with Rails anymore, making the tests fail and the harder to identify the commit that introduced a bug. Also this will make sure that a contributor will always get a set of dependencies that are passing with our tests. In our CI server we delete the lock file to make sure we are always testing against the newest release of our dependencies.
21 lines
494 B
Text
21 lines
494 B
Text
# Don't put *.swp, *.bak, etc here; those belong in a global ~/.gitignore.
|
|
# Check out https://help.github.com/articles/ignoring-files for how to set that up.
|
|
|
|
debug.log
|
|
.Gemfile
|
|
/.bundle
|
|
/.ruby-version
|
|
pkg
|
|
/dist
|
|
/doc/rdoc
|
|
/*/doc
|
|
/*/test/tmp
|
|
/activerecord/sqlnet.log
|
|
/activemodel/test/fixtures/fixture_database.sqlite3
|
|
/activesupport/test/fixtures/isolation_test
|
|
/railties/test/500.html
|
|
/railties/test/fixtures/tmp
|
|
/railties/test/initializer/root/log
|
|
/railties/doc
|
|
/railties/tmp
|
|
/guides/output
|