3.Bundler常用命令一览表

简述命令
查看Bundler帮助bundle --help | -h | help
查看Bundler子命令帮助bundle <command> --help | -hbundle help <command>
查看Bundler版本bundle --version | -v(简述) 或
bundle version(详细)
查看所有配置(包含用户级配置和应用级配置)bundle config list
查看指定配置(包含用户级配置和应用级配置)bundle config [get] <name>
添加或更改指定配置(用户级)bundle config [set] --global <name> <value>
添加或更改指定配置(应用级)bundle config [set] --local <name> <value>
删除指定配置(用户级)bundle config unset --global <name>
删除指定配置(应用级)bundle config unset --local <name>
添加或更改https://rubygems.org/的镜像配置(用户级)bundle config [set] --global mirror.https://rubygems.org <MIRROR_URL>
删除https://rubygems.org/的镜像配置(用户级)bundle config unset --global mirror.https://rubygems.org
查看已安装的所有依赖包bundle list
安装所有依赖包bundle install
安装指定依赖包bundle add <GEMNAME>
更新所有依赖包bundle update --all
更新指定依赖包bundle update <GEMNAME>
删除指定依赖包bundle remove <GEMNAME>

原创文章,作者:huoxiaoqiang,如若转载,请注明出处:https://www.huoxiaoqiang.com/ruby/rubyenv/36146.html

(0)
huoxiaoqiang的头像huoxiaoqiang
上一篇 2025年3月2日 17:03
下一篇 2025年3月3日 17:04

相关推荐

发表回复

登录后才能评论