Project

General

Profile

Actions

Bug #1733

closed

require does not look at current directory anymore ?

Added by Chauk-Mean (Chauk-Mean Proum) almost 15 years ago. Updated almost 13 years ago.

Status:
Rejected
Assignee:
-
Target version:
ruby -v:
ruby 1.9.2dev (2009-07-03 trunk 23939)
Backport:
[ruby-core:24153]

Description

=begin
In ruby-1.9 trunk, the behaviour of require has changed.
Require does not look at the current directory anymore.
Is this intentional ?

$ cat a.rb
puts "Hello World"

$ cat b.rb
require 'a'
puts "Goodbye World"

$ ruby -v b.rb
ruby 1.9.2dev (2009-07-03 trunk 23939) [i386-mingw32]
b.rb:1:in require': no such file to load -- a (LoadError) from b.rb:1:in '

Replacing require 'a' with require './a' or require_relative 'a' works.
But this introduces incompatibility issues with code that works with ruby-1.8 and ruby-1.9.1-p129.
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0