2

.rvmrcファイルのあるフォルダに移動したときに、警告を取り除く方法はありますか?

====================================================================================

= NOTICE                                                                           =

====================================================================================

= RVM has encountered a new or modified .rvmrc file in the current directory       =

= This is a shell script and therefore may contain any shell commands.             =

=                                                                                  =

= Examine the contents of this file carefully to be sure the contents are          =

= safe before trusting it! ( Choose v[iew] below to view the contents )            =

====================================================================================

Do you wish to trust this .rvmrc file? (/home/sam/myrailsapp/.rvmrc)

y[es], n[o], v[iew], c[ancel]> y
4

4 に答える 4

1

ドキュメントによると

To turn off the project specific rvmrc functionality in your $HOME/.rvmrc set:
rvm_project_rvmrc=0

試してみるためのRVMインスタンスはありませんが、それがあなたが探しているものだと思います。

また、次の理由から、 RVMの代わりにrbenvを使用することをお勧めします。

于 2013-03-08T17:44:57.633 に答える
1

現在、RVMには、信頼を求め続けるバグがあります.rvmrc

解決策は簡単です-.ruby-version代わりに使用してください:

1.9.3

また

1.9.3@gemset

Gemsetが自動的に作成されます。

.ruby-versionRubyバージョンの切り替え専用です。Rubyを切り替えるときにスクリプトが必要な場合でも、が必要.rvmrcです。

于 2013-05-14T07:50:25.843 に答える
1

.rvmrcから.ruby-version+.ruby-gemsetに切り替えるには

rvm rvmrc to .ruby-version
于 2013-05-28T13:22:31.293 に答える
0

RVMがsudoとともにインストールされている場合はcd、rootとしてディレクトリに移動する必要があります。

.rvmrcまたは をルートとして信頼している場合.ruby-env、通知は返されません。

于 2018-05-28T14:16:35.357 に答える