无法更新 Xcodeproj Gem
Can Not Update Xcodeproj Gem
我正在尝试将 xcodeproj gem 更新到最新版本。
目前我的版本是1.5.6:
$xcodeproj --version
1.5.6
$ which xcodeproj
/Users/nicolasmiari/.rvm/gems/ruby-2.4.0/bin/xcodeproj
我尝试使用以下方式进行更新:
$ gem install xcodeproj
Successfully installed xcodeproj-1.7.0
Parsing documentation for xcodeproj-1.7.0
Done installing documentation for xcodeproj after 1 seconds
1 gem installed
...这似乎成功了,但 xcodeproj --version
不断返回 1.5.6
。
我对 Ruby 或 rvm 一点都不精通,老实说我现在无法深入研究。我只需要更新一个(不幸的)使用 Cocoapods 的 Xcode 项目。
我错过了什么?
附录:如果我运行:
$ gem list
...我得到(除其他外):
xcodeproj (1.7.0, 1.5.6)
所以两个版本都安装了。我想我需要摆脱旧的...
好的,所以按照 this answer,我 运行:
$ gem cleanup xcodeproj
... 现在 $ gem list
returns:
xcodeproj (1.7.0)
...但是 $ xcodeproj --version
仍然报告 1.5.6
。
我重新启动终端,现在它报告最新版本。
只需使用:sudo gem update xcodeproj
通过 gem
更新 xcodeproj
我正在尝试将 xcodeproj gem 更新到最新版本。
目前我的版本是1.5.6:
$xcodeproj --version
1.5.6
$ which xcodeproj
/Users/nicolasmiari/.rvm/gems/ruby-2.4.0/bin/xcodeproj
我尝试使用以下方式进行更新:
$ gem install xcodeproj
Successfully installed xcodeproj-1.7.0
Parsing documentation for xcodeproj-1.7.0
Done installing documentation for xcodeproj after 1 seconds
1 gem installed
...这似乎成功了,但 xcodeproj --version
不断返回 1.5.6
。
我对 Ruby 或 rvm 一点都不精通,老实说我现在无法深入研究。我只需要更新一个(不幸的)使用 Cocoapods 的 Xcode 项目。
我错过了什么?
附录:如果我运行:
$ gem list
...我得到(除其他外):
xcodeproj (1.7.0, 1.5.6)
所以两个版本都安装了。我想我需要摆脱旧的...
好的,所以按照 this answer,我 运行:
$ gem cleanup xcodeproj
... 现在 $ gem list
returns:
xcodeproj (1.7.0)
...但是 $ xcodeproj --version
仍然报告 1.5.6
。
我重新启动终端,现在它报告最新版本。
只需使用:sudo gem update xcodeproj
通过 gem
xcodeproj