问题描述
$ ruby dk.rb initInitialization complete! Please review and modify the auto-generated’config.yml’ file to ensure it contains the root directories to allof the installed Rubies you want enhanced by the DevKit.Administrator@WIN-9PH4ISN44NM MINGW64 /e/tools/devkit$ ruby dk.rb installInvalid configuration or no Rubi
在 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#
初始化的内容不对呀
需要自己手动填写吗?
另 这里该填写什么东西呢
问题解答
回答1:仔细读config.yml文件,它是要告诉你,把你的Ruby的根目录按照这个格式写在这个文件里面,然后执行 ruby dk.rb install。
如果你安装的目录是C盘下的Ruby文件夹,那就在这个文件的后面写上- C:Ruby。
回答2:This configuration file contains the absolute path locations of allinstalled Rubies to be enhanced to work with the DevKit. This configfile is generated by the ’ruby dk.rb init’ step and may be modifiedbefore running the ’ruby dk.rb install’ step. To include any installedRubies that were not automagically discovered, simply add a line belowthe triple hyphens with the absolute path to the Ruby root directory.Example:---- C:/ruby19trunk- C:/ruby192devC:Ruby200-x64
(亲测可用)
回答3:在最下面添加 - C:/Ruby22-x64(这是你ruby安装的位置,记得前面一定要加横线)