
bundle
List of commands for bundle:
-
bundle:tldr:3a73a bundle: Update all gems within the given group in the `Gemfile`.$ bundle update --group ${development}try on your machineexplain this command
-
bundle:tldr:438c1 bundle: Update one or more specific gem(s) defined in the `Gemfile`.$ bundle update ${gem_name} ${gem_name}try on your machineexplain this command
-
bundle:tldr:5be60 bundle: Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`.$ bundle updatetry on your machineexplain this command
-
bundle:tldr:5c09f bundle: List installed gems in the `Gemfile` with newer versions available.$ bundle outdatedtry on your machineexplain this command
-
bundle:tldr:962e2 bundle: Update one or more specific gems(s) defined in the `Gemfile` but only to the next patch version.$ bundle update --patch ${gem_name} ${gem_name}try on your machineexplain this command
-
bundle:tldr:99823 bundle: Execute a command in the context of the current bundle.$ bundle exec ${command} ${arguments}try on your machineexplain this command
-
bundle:tldr:a1412 bundle: Install all gems defined in the `Gemfile` expected in the working directory.$ bundle installtry on your machineexplain this command
-
bundle:tldr:d889b bundle: Create a new gem skeleton.$ bundle gem ${gem_name}try on your machineexplain this command