bundle-add - Gemfile に gem を追加して bundle install を実行します。
bundle add GEM_NAME [--group=GROUP] [--version=VERSION] [--source=SOURCE] [--path=PATH] [--git=GIT] [--github=GITHUB] [--branch=BRANCH] [--ref=REF] [--skip-install] [--strict] [--optimistic]
指定した gem を Gemfile に追加して bundle install を実行します。--skip-install フラグを使用すると bundle install を回避できます。
例
bundle add rails
bundle add rails --version "< 3.0, > 1.1"
bundle add rails --version "~> 5.0.0" --source "https://gems.example.com" --group "development"
bundle add rails --skip-install
bundle add rails --group "development, test"
--version, -v--group, -g--source, -s--require, -r--path--git--github--branch--ref--skip-install--optimistic--strict