1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
require 'rbconfig'
dlext = RbConfig::CONFIG['DLEXT']
begin
# If the installation task did its job, the extension is in lib/ next to this file.
require "debug_inspector.#{dlext}"
# We only want to define constants if the extension has loaded.
require_relative "rubyvm/debug_inspector/version"
rescue LoadError
begin
# If not, maybe the extension is in ext/
require_relative "../ext/debug_inspector/debug_inspector.#{dlext}"
# We only want to define constants if the extension has loaded.
require_relative "rubyvm/debug_inspector/version"
rescue LoadError => e
puts "debug_inspector extension was not loaded"
end
end
|