Actions
Bug #1733
closedrequire does not look at current directory anymore ?
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
Like0
Like0Like0Like0Like0