Sha256: 4ed12e71e5b8d0a653de0807283da4d2b8b5b7fe1af1059515acfefa89f39194

Contents?: true

Size: 319 Bytes

Versions: 2

Compression:

Stored size: 319 Bytes

Contents

$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require 'neobundle'
require 'fileutils'

RSpec.configure do |config|
  config.before(:all) do
    FileUtils.mkdir_p './tmp'
  end
  
  config.before(:each) do
    FileUtils.rm_rf './tmp/*'
  end
  
  config.after(:all) do
    FileUtils.rm_rf './tmp'
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
neobundle-0.2.0 spec/spec_helper.rb
neobundle-0.1.0 spec/spec_helper.rb