Sha256: 7eddb3b817f1e2301b4c6e494fe08bad1a4f9f935b4913d1409e67a85044852f
Contents?: true
Size: 683 Bytes
Versions: 2
Compression:
Stored size: 683 Bytes
Contents
if RUBY_VERSION > "1.9" require 'simplecov' require 'simplecov-gem-profile' 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| config.include Helpers end RSPEC_TMP_PATH = Pathname.new(__FILE__).dirname + "tmp" PROXY_BASE_PATH = RSPEC_TMP_PATH + "proxy" LOCAL_CLOUD_PATH = RSPEC_TMP_PATH + "cloud" RAILS_ROOT_PATH = RSPEC_TMP_PATH + "railsapp" [PROXY_BASE_PATH, LOCAL_CLOUD_PATH, RAILS_ROOT_PATH].each do |path| path.rmtree if path.exist? path.mkpath end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
defog-0.9.5 | spec/spec_helper.rb |
defog-0.9.4 | spec/spec_helper.rb |