Sha256: d6d1aa152297310fd34af89813a038d6b876544ac1e09b2f1a2ee922fdd14c3d

Contents?: true

Size: 401 Bytes

Versions: 4

Compression:

Stored size: 401 Bytes

Contents

require "bundler"
Bundler.setup
Bundler.require(:default, :development)

require "storage"
require "pathname"

TMP = Pathname.new(File.expand_path(File.dirname(__FILE__) + "/tmp"))
RESOURCES = Pathname.new(File.expand_path(File.dirname(__FILE__) + "/resources"))

RSpec.configure do |config|
  config.around :each do
    FileUtils.rm_rf(TMP) rescue nil
    FileUtils.mkdir_p(TMP) rescue nil
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
storage-0.1.5 spec/spec_helper.rb
storage-0.1.3 spec/spec_helper.rb
storage-0.1.2 spec/spec_helper.rb
storage-0.1.1 spec/spec_helper.rb