ruby – 从父目录加载文件

前端之家收集整理的这篇文章主要介绍了ruby – 从父目录加载文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 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'
原文链接:https://www.f2er.com/ruby/268830.html

猜你在找的Ruby相关文章