vote up 2 vote down star
1

I've always thought this sort of thing ugly:

require File.join(File.dirname(__FILE__), 'hirb/config')

Is there a prettier alternative, maybe one written for Rails?

require_relative 'hirb/config'
require_relative '../another/file'
flag

75% accept rate
1  
Ruby 1.9 has require_relative - though for the life of me I can't find its documentation or source right this moment. In any case, that might help once you find the source... – Telemachus Oct 7 at 19:14

3 Answers

vote up 2 vote down check

You can extend the kernel.

module Kernel
    def require_relative(path)
      require File.join(File.dirname(caller[0]), path.to_str)
    end
end
link|flag
...but where do you require that? ;-) – Mike Woodhouse Oct 7 at 21:17
Perfect. Thanks. – Mario Oct 11 at 4:21
And why, exactly, isn't this native to Ruby itself? It's not commonplace? – Mario Oct 15 at 22:10
vote up 6 vote down

You could do

Dir.chdir(File.dirname(__FILE__) do
  require 'hirb/config'
  require '../another/file'
end

Whether or not that's better is a matter of taste, of course.

link|flag
When code is ugly because of required but consistent cruft (e.g. the File.join(File.dirname(__FILE__), path) stuff here), abstract abstract abstract! – Sarah Vessels Oct 7 at 17:20
1  
I think this one isn't going to work out because FILE is always relative to the file it is defined in, not the file it is called in. – tadman Oct 7 at 17:44
@tadman: Oh, right. Damn. – sepp2k Oct 7 at 17:55
vote up 5 vote down

The best approach is probably preparing your load path so you don't need to do all this. It's not especially difficult for your main module or init file to introduce a few other locations.

This is also affected by the RUBYLIB environment variable, as well as the -I command line parameter.

$: << File.expand_path(File.join('..', 'lib'), File.dirname(__FILE__))
link|flag
caller[0] means you can abstract – jrhicks Oct 8 at 4:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.