Sha256: 180a30bafd360fa8b946a33b87b7d3e9748c12c230242d11d43991323348e284
Contents?: true
Size: 419 Bytes
Versions: 2
Compression:
Stored size: 419 Bytes
Contents
require 'bundler/setup' Bundler.setup require 'smallvictories' RSpec.configure do |config| config.before do FileUtils.cd File.dirname(__FILE__) end config.after do %w(./fixtures/destination/_sv_custom.css ./fixtures/destination/_sv_custom.js ./fixtures/destination/index.html ./_config.yml).each { |path| clean_file(path) } end end def clean_file path FileUtils.rm(path) if File.exists?(path) end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
smallvictories-0.0.5 | spec/spec_helper.rb |
smallvictories-0.0.4 | spec/spec_helper.rb |