web-dev-qa-db-ja.com

構成が無効ですか、それともルビーがリストされていませんか?

Devkitパスを設定しようとすると、次のエラーが発生します

C:\Devkit>Ruby dk.rb install
Invalid configuration or no Rubies listed. Please fix 'config.yml'
and rerun 'Ruby dk.rb install'

このエラーは解決できません。誰かが私を助けることができますか?

これは私のconfig.ymlファイルです。

# This configuration file contains the absolute path locations of all
# installed Rubies to be enhanced to work with the DevKit. This config
# file is generated by the 'Ruby dk.rb init' step and may be modified
# before running the 'Ruby dk.rb install' step. To include any installed
# Rubies that were not automagically discovered, simply add a line below
# the triple hyphens with the absolute path to the Ruby root directory.
#
# Example:
#
# ---
# - C:/Ruby19trunk
# - C:/Ruby192dev
#
---
19

Config.ymlファイルは [〜#〜] yaml [〜#〜] ファイルです。次の例を使用して、Ruby環境へのパスを定義する必要があります。

#--- 
#-C:/ Ruby19trunk 
#-C:/ Ruby192dev 

その例はコメント化されているため、マシン上では何も実行されていません。 「実際の」YAMLでは、次のようなものを使用します。

---
- C:/Ruby19trunk
- C:/Ruby192dev

これにより、環境のパスまたはディレクトリの配列が定義されます。適切なパスがどこにあるかを把握し、それを入力する必要があります。

YAMLドキュメント を読んで、自分が何をしているのかを理解することを強くお勧めします。もはや、YAMLは最も一般的に使用されているデータシリアル化形式の1つであり、多くの場合に遭遇します。

36
the Tin Man