是什么 ? | : | makes sure Ruby applications run the same code on every machine. |
开发语言 | : | Ruby |
官方主页 | : | https://bundler.io |
源码仓库 | : | https://github.com/bundler/bundler |
gem install bundler
创建Gemfile
配置文件。
安装Gemfile
中指定的包。
示例:
bundle install
bundle install --path=vendor/bundle --binstubs
bundle install rails
往Gemfile
中添加指定的依赖包,并安装之。
示例:
bundle add rails
bundle add rails --skip-install
执行本地包中的命令。
示例:
bundle exec pod install --verbose --no-repo-update
检查是否有可以更新的包。
列出已经安装的包。