2015-10-22 08:31:52 +01:00
|
|
|
# bundle
|
2014-09-16 16:33:44 +01:00
|
|
|
|
|
|
|
> Dependency manager for the Ruby programming language.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://bundler.io/man/bundle.1.html>.
|
2014-09-16 16:33:44 +01:00
|
|
|
|
2019-04-11 21:18:15 +01:00
|
|
|
- Install all gems defined in the `Gemfile` expected in the working directory:
|
2014-09-16 16:33:44 +01:00
|
|
|
|
|
|
|
`bundle install`
|
|
|
|
|
2019-04-11 21:18:15 +01:00
|
|
|
- Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`:
|
2014-09-16 16:33:44 +01:00
|
|
|
|
|
|
|
`bundle update`
|
|
|
|
|
2019-04-11 21:18:15 +01:00
|
|
|
- Update one specific gem defined in the `Gemfile`:
|
2014-09-16 16:33:44 +01:00
|
|
|
|
|
|
|
`bundle update --source {{gemname}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Create a new gem skeleton:
|
2014-09-16 16:33:44 +01:00
|
|
|
|
|
|
|
`bundle gem {{gemname}}`
|