mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Talk about Gemfile.lock in the contributing guide
[ci skip]
This commit is contained in:
parent
a845abdb85
commit
ef4afb65b2
1 changed files with 7 additions and 3 deletions
|
@ -173,12 +173,12 @@ $ git checkout -b my_new_branch
|
|||
|
||||
It doesn't matter much what name you use, because this branch will only exist on your local computer and your personal repository on GitHub. It won't be part of the Rails Git repository.
|
||||
|
||||
### Bundle Update
|
||||
### Bundle install
|
||||
|
||||
Update and install the required gems.
|
||||
Install the required gems.
|
||||
|
||||
```bash
|
||||
$ bundle update
|
||||
$ bundle install
|
||||
```
|
||||
|
||||
### Running an Application Against Your Local Branch
|
||||
|
@ -376,6 +376,10 @@ A CHANGELOG entry should summarize what was changed and should end with author's
|
|||
|
||||
Your name can be added directly after the last word if you don't provide any code examples or don't need multiple paragraphs. Otherwise, it's best to make as a new paragraph.
|
||||
|
||||
### Updating the Gemfile.lock
|
||||
|
||||
Some changes requires the dependencies to be upgraded. In these cases make sure you run `bundle update` to get the right version of the dependency and commit the `Gemfile.lock` file within your changes.
|
||||
|
||||
### Sanity Check
|
||||
|
||||
You should not be the only person who looks at the code before you submit it.
|
||||
|
|
Loading…
Reference in a new issue