auracle: add page, gem,bundle: update (#4572)

gem: add SemVer spec install example
bundle: fix update example, add patch-update, group-update, and outdated examples
This commit is contained in:
Hermann Mayer
2020-10-15 00:22:59 +02:00
committed by GitHub
parent 7161d65a40
commit dd955ca693
3 changed files with 38 additions and 6 deletions

View File

@@ -11,9 +11,21 @@
`bundle update`
- Update one specific gem defined in the `Gemfile`:
- Update one or more specific gem(s) defined in the `Gemfile`:
`bundle update --source {{gemname}}`
`bundle update {{gemname}} {{gemname}}`
- Update one or more specific gems(s) defined in the `Gemfile` but only to the next patch version:
`bundle update --patch {{gemname}} {{gemname}}`
- Update update all gems within the given group in the `Gemfile`:
`bundle update --group {{development}}`
- List installed gems in the `Gemfile` with newer versions available:
`bundle outdated`
- Create a new gem skeleton: