Project

General

Profile

Actions

Bug #15206

closed

require_relative in std_lib

Added by marcandre (Marc-Andre Lafortune) over 5 years ago. Updated over 5 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:89291]

Description

I noticed that there are some require for internal files in lib/. Ideally, they would be using require_relative instead. This is faster and more explicit.

Note: require_relative had a potential issue with symlinks that was fixed in 2.5, so libraries that might be loaded from earlier Ruby, like rubygems, can not yet be updated.

I've created a PR and would like to know if there are comments / objections / things I'm missing.


Related issues 1 (0 open1 closed)

Is duplicate of Ruby master - Feature #8781: Use require_relative() instead of require() if possibleClosedActions

Updated by MSP-Greg (Greg L) over 5 years ago

The Appveyor run on the PR passed.

Appveyor testing has been intermittently failing. With parallel/multi testing (test-all and/or test-spec), there can be a lot more files being checked and possibly loaded. Considering more than one CI VM may be exist on a system, and they may share drives, anything that lowers disk I/O is good.

Actions #2

Updated by shyouhei (Shyouhei Urabe) over 5 years ago

  • Is duplicate of Feature #8781: Use require_relative() instead of require() if possible added
Actions #3

Updated by nobu (Nobuyoshi Nakada) over 5 years ago

  • Status changed from Open to Closed

Applied in changeset trunk|r65511.


lib/cgi/util.rb: use require

  • lib/cgi/util.rb: reverted r65505. require_relative does not
    work for cgi/escape.so, as extension libraries are placed in
    other directories than ruby libraries. [Bug #15206]

Updated by stomar (Marcus Stollsteimer) over 5 years ago

For lib/racc/parser.rb I reverted this in r65514 for the require of racc/cparse.so (similar to r65511 for cgi/escape).

Possibly there might be other C extensions that are required from within /lib, where require_relative would not work?

(I only had a quick look into /lib and /ext, and racc was an obvious other case, besides cgi, where this problem might occur.)

PS. The LoadError for racc/cparse is not that obvious because it is rescued and there is a Ruby fallback.

Updated by marcandre (Marc-Andre Lafortune) over 5 years ago

Oh, good catch, I should have thought of that...

I modified my script to check if the path with .rb actually exists and it came back with only these two exceptions.

Updated by znz (Kazuhiro NISHIYAMA) over 5 years ago

I revert examples in comment and replace numeric features too at r65548.

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0Like0Like0