7

消息:

You are using '.rvmrc', it requires trusting, it is slower and it is not compatible with other ruby managers,
you can switch to '.ruby-version' using 'rvm rvmrc to [.]ruby-version'
or ignore this warnings with 'rvm rvmrc warning ignore /Users/wadawadabingbang/Sites/my_amazing_fn_website/.rvmrc',
'.rvmrc' will continue to be the default project file in RVM 1 and RVM 2,
to ignore the warning for all files run 'rvm rvmrc warning ignore all.rvmrcs'.

我应该执行什么命令?

我的红宝石版本是ruby-1.9.3-p385

4

4 回答 4

6

如果您不想更改您.rvmrc运行的所有项目中的文件(如 Yule 所说)rvm rvmrc warning ignore all.rvmrcs。它将忽略您所有项目的此警告消息

如果您不想.rvmrc仅为此项目更改文件,请运行rvm rvmrc warning ignore /Users/wadawadabingbang/Sites/my_amazing_fn_website/.rvmrc

但是,此消息建议将您.rvmrc移至新系统。为此,您只需.ruby-version在 : 中使用您的 ruby​​ 版本创建1.9.3-p385并删除 .rvmrc。就是这样。

希望这可以帮助。

于 2013-04-02T16:23:11.710 回答
2

我将 .rvmrc 重命名为 .ruby-version 并更改了内容

rvm_trust_rvmrcs_flag=1
rvm use ruby-2.0.0-p0@MYGEMSET --create

ruby-2.0.0-p0@MYGEMSET
于 2013-04-08T12:34:33.277 回答
0

应该工作后

rvm get head

它对我有用

于 2013-10-15T07:21:14.437 回答
0

这类似于CupraR_On_Rails的答案,但您不必输入目录的名称。我在我的.profile调用中设置了一个别名rvm_trust来为我运行它。

rvm rvmrc warning ignore `pwd`/.rvmrc
于 2013-11-05T00:55:30.850 回答