Skip to content

Commit 9a634e2

Browse files
committed
Revert "Switch to require_relative for loading library."
This reverts commit 53404f7.
1 parent ff49ee3 commit 9a634e2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/libxml-ruby.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
# Load the C-based binding.
44
begin
55
RUBY_VERSION =~ /(\d+.\d+)/
6-
require_relative "#{$1}/libxml_ruby"
6+
require "#{$1}/libxml_ruby"
77
rescue LoadError
8-
require_relative "libxml_ruby"
8+
require "libxml_ruby"
99
end
1010

1111
# Load Ruby supporting code.

0 commit comments

Comments
 (0)