在HOME / path_test /我有:
load_test.rb:
require 'yaml'
cnf = YAML::load(File.open('config.yml'))
puts cnf['Hello']
config.yml:
Hello: world!!!
当在HOME / path_test /我得到预期时:
-bash-3.2$ ruby load_test.rb
world!!!
在HOME /(cd ..)我得到
-bash-3.2$ ruby path_test/load_test.rb
path_test/load_test.rb:3:in `initialize': No such file or directory - config.yml (Errno::ENOENT)
from path_test/load_test.rb:3:in `open'
from path_test/load_test.rb:3:in `<main>'
这是正确的行为,但不是我所希望的:)
有没有办法相对于源文件加载.yml文件,而不是相对于当前工作的DIR?
解决方案(load_Test.rb):
require 'yaml'
fn = File.dirname(File.expand_path(__FILE__)) + '/config.yml'
cnf = YAML::load(File.open(fn))
puts cnf['Hello']
答案 0 :(得分:80)
您应该通过以下方式获取当前文件的路径:
cnf = YAML::load_file(File.join(File.dirname(File.expand_path(__FILE__)), 'config.yml'))
修改强>
从Ruby 2.0开始,您可以简化并使用:
cnf = YAML::load_file(File.join(__dir__, 'config.yml'))