# Specifies a gem mirror; duplicated in acceptance setup # to ensure a similar environment on acceptance hosts. source ENV || ‘rubygems.org

def location_for(place, fake_version = nil)

if place =~ /^(git:[^#]*)#(.*)/
  [fake_version, { :git => $1, :branch => $2, :require => false }].compact
elsif place =~ /^file:\/\/(.*)/
  ['>= 0', { :path => File.expand_path($1), :require => false }]
else
  [place, { :require => false }]
end

end

gem “beaker”, *location_for(ENV || “~> 3.6”) gem “beaker-hostgenerator”, *location_for(ENV || “~> 0.8”) gem “beaker-abs”, *location_for(ENV || “~> 0.2”) gem “rake” gem “httparty”, :require => false gem ‘uuidtools’, :require => false

group(:test) do

gem "rspec", "~> 2.14.0", :require => false
gem "mocha", "~> 0.10.5", :require => false

end

if File.exists? “#{__FILE__}.local”

eval(File.read("#{__FILE__}.local"), binding)

end