if RUBY_VERSION > "1.9" require 'simplecov' require 'simplecov-gem-adapter' SimpleCov.start 'gem' end require 'rspec' require 'defog' # Requires supporting files with custom matchers and macros, etc, # in ./support/ and its subdirectories. Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f} RSpec.configure do |config| end RSPEC_TMP_PATH = Pathname.new(__FILE__).dirname + "tmp" PROXY_BASE_PATH = RSPEC_TMP_PATH + "proxy" LOCAL_CLOUD_PATH = RSPEC_TMP_PATH + "cloud" [PROXY_BASE_PATH, LOCAL_CLOUD_PATH].each do |path| path.rmtree if path.exist? path.mkpath end