作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我正在使用 Ruby 1.8,我有一个我想调用的脚本,但它位于父文件夹中。结构如下:
maindir/
neededscript.rb
subdir/
subdir2/
myscript.rb
如何从 myscript.rb
中获取 neededscript.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'
关于ruby - 从父目录加载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16833643/
我是一名优秀的程序员,十分优秀!