class Appraisal::Gemfile

Load bundler Gemfiles and merge dependencies

def dup

def dup
  Gemfile.new.tap do |gemfile|
    gemfile.git_sources = @git_sources
    gemfile.run(for_dup, __FILE__, __LINE__)
  end
end

def load(path)

def load(path)
  run(IO.read(path), path) if File.exist?(path)
end

def run(definitions, path, line = 1)

def run(definitions, path, line = 1)
  instance_eval(definitions, path, line) if definitions
end