@H_403_1@我正在使用
Ruby 1.8,我有要调用的脚本,但它在父文件夹中.以下是结构:
maindir/ neededscript.rb subdir/ subdir2/ myscript.rb
我怎样才能从myscript.rb里面找到needscript.rb?
解决方法
在Ruby> = 1.9中,您可以使用
require_relative
方法
require_relative complements the builtin method require by allowing you to load a file that is relative to the file containing the require_relative statement.
require_relative '../../neededscript.rb'