我正在学习The Well Grounded Rubyist,我在其中练习使用以下选项查看Ruby的安装目录和配置:
irb --simple-prompt -rrbconfig
>> Config::CONFIG["binddir"]
在我看来,irb不会将Config :: CONFIG识别为常量。
我在Windows 8上使用Ruby 1.9.3。
如何检查Ruby的配置数据结构?
答案 0 :(得分:1)
Config
:
$ irb
001> Config
(irb):1: Use RbConfig instead of obsolete and deprecated Config.
=> RbConfig
你应该做
002> RbConfig::CONFIG
=> { ... humongous hash ... }