Skip to content

Commit d785fed

Browse files
committed
Add removal of lock file with rebundling
1 parent 3e607df commit d785fed

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,19 @@ $ bundle _<version number>_ config set --local without 'production'
5252
$ bundle _<version number>_ install
5353
```
5454

55-
Here you should replace `<version number>` with the actual version number. For example, if `<version number>` is `2.3.11`, then the commands should look like this:
55+
Here you should replace `<version number>` with the actual version number. For example, if `<version number>` is `2.3.14`, then the commands should look like this:
5656

5757
```
58-
$ gem install bundler -v 2.3.11
59-
$ bundle _2.3.11_ config set --local without 'production'
60-
$ bundle _2.3.11_ install
58+
$ gem install bundler -v 2.3.14
59+
$ bundle _2.3.14_ config set --local without 'production'
60+
$ bundle _2.3.14_ install
61+
```
62+
63+
If you run into any trouble, you can remove `Gemfile.lock` and rebundle at any time:
64+
65+
```
66+
$ rm -f Gemfile.lock
67+
$ bundle install
6168
```
6269

6370
Next, migrate the database:

0 commit comments

Comments
 (0)