All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jruby.kernel19.kernel.rb Maven / Gradle / Ivy

There is a newer version: 0.8.14
Show newest version
module Kernel
  module_function
  def require_relative(relative_feature)
    if relative_feature.respond_to? :to_path
      relative_feature = relative_feature.to_path
    else
      relative_feature = relative_feature
    end

    relative_feature = JRuby::Type.convert_to_str(relative_feature)
    
    c = caller.first
    e = c.rindex(/:\d+:in /)
    file = $`
    if /\A\((.*)\)/ =~ file # eval, etc.
      raise LoadError, "cannot infer basepath"
    end
    absolute_feature = File.join(File.dirname(File.realpath(file)), relative_feature)
    require absolute_feature
  end

  def exec(*args)
    _exec_internal(*JRuby::ProcessUtil.exec_args(args))
  end
  
  def spawn(*args)
    Process.spawn(*args)
  end
end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy