module Egg

Constants

VERSION

Public Class Methods

root_join(*joins) click to toggle source
# File lib/egg.rb, line 5
def self.root_join(*joins)
  path_parts = [File.dirname(__FILE__)] + joins.map(&:to_s)
  joined_path = File.join(*path_parts)
  File.expand_path(joined_path)
end