module RailsDbInfo

Constants

VERSION

Public Class Methods

require_relative(path) click to toggle source

Custom require relative that work with older rubies also

# File lib/rails_db_info.rb, line 3
def self.require_relative(path)
  full_path = File.expand_path(path, File.dirname(__FILE__))
  Kernel.require(full_path)
end