Docs header transparent bg

bundle add

bundle-add - 將 gem 加入 Gemfile 並執行 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
指定要加入 gem 的版本需求。
--group, -g
指定要加入 gem 的群組。多個群組應以逗號分隔。
--source, -s
指定要加入 gem 的來源。
--require, -r
將 require 路徑加入 gem。提供 false 或字串路徑。
--path
指定要加入 gem 的檔案系統路徑。
--git
指定要加入 gem 的 git 來源。
--github
指定要加入 gem 的 github 來源。
--branch
指定要加入 gem 的 git 分支。
--ref
指定要加入 gem 的 git ref。
--skip-install
將 gem 加入 Gemfile 但不進行安裝。
--optimistic
加入版本的樂觀宣告。
--strict
加入版本的嚴格宣告。