Is there a shorter way to require a file in the same directory in ruby?

纵饮孤独 提交于 2019-11-28 19:04:31

Since ruby 1.9 you can use require_relative.

Just require filename.

Yes, it will import it twice if you specify it as filename and ./filename, so don't do that. You're not specifying the .rb, so don't specify the path. I usually put the bulk of my application logic into a file in lib, and then have a script in bin that looks something like this:

#!/usr/bin/env ruby

$: << File.join(File.dirname(__FILE__), "/../lib")
require 'app.rb'
App.new.run(ARGV)

Another advantage is that I find it easier to do unit testing if the loading the application logic doesn't automatically start executing it.

The above will work even when you're running the script from some other directory. However, inside the same directory the shorter forms you refer to work as expected and at least for ruby 1.9 won't result in a double-require.

testa.rb

puts "start test A"
require 'testb'
require './testb'
puts "finish test A"

testb.rb

puts "start test B"
puts "finish test B"

running 'ruby testa.rb' will result in:

start test A
start test B
finish test B
finish test A

However, the longer form will work even from another directory (eg. ruby somedir/script.rb)

Put this in a standard library directory (somewhere that's already in your default loadpath $:):

# push-loadpath.rb
if caller.first
  $: << File.expand_path(File.dirname(caller.first))
end

Then, this should work

% ls /path/to/
bin.rb lib1.rb lib2.rb #...
% cat /path/to/bin.rb
load 'push-loadpath.rb'
require 'lib1'
require 'lib2'
#...

caller gives you access to the current callstack, and tells you what file and where, so push-loadpath.rb uses that to add the file that load'd it to the loadpath.

Note that you should load the file, rather than require it, so the body can be invoked multiple times (once for each time you want to alter the loadpath).

Alternately, you could wrap the body in a method,

# push-loadpath.rb
def push_loadpath
  $: << File.expand_path(File.dirname(caller.first))
end

This would allow you to require it, and use it this way:

% ls /path/to/
bin.rb lib1.rb lib2.rb #...
% cat /path/to/bin.rb
require 'push-loadpath'
push_loadpath
require 'lib1'
require 'lib2'
#...
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!