bundler
1.1、bundler简介
是什么 ?:makes sure Ruby applications run the same code on every machine.
开发语言:Ruby
官方主页:https://bundler.io
源码仓库:https://github.com/bundler/bundler
1.2、通过RubyGems安装bundler
gem install bundler
1.3、bundle[r]命令
1.3.1、bundle[r] init

创建Gemfile配置文件。

1.3.2、bundle[r] install <packageName> [option]...

安装Gemfile中指定的包。

示例:

bundle install
bundle install --path=vendor/bundle --binstubs
bundle install rails
1.3.3、bundle[r] add <packageName> [option]...

Gemfile中添加指定的依赖包,并安装之。

示例:

bundle add rails
bundle add rails --skip-install
1.3.4、bundle[r] exec <command>

执行本地包中的命令。

示例:

bundle exec pod install --verbose --no-repo-update
1.3.5、bundle[r] outdated

检查是否有可以更新的包。

1.3.6、bundle[r] list

列出已经安装的包。