Skip to content

Commit 1cc8cd4

Browse files
committed
Replace --without option with config set command on bundle install
bundle install --with was deprecated in favor of bundle config set. Signed-off-by: Takuya Noguchi <[email protected]>
1 parent 1e3fcd4 commit 1cc8cd4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

guides/source/development_dependencies_install.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,8 @@ $ bundle install
229229
If you don't need to run Active Record tests, you can run:
230230

231231
```bash
232-
$ bundle install --without db
232+
$ bundle config set without db
233+
$ bundle install
233234
```
234235

235236
### Contribute to Rails

0 commit comments

Comments
 (0)