Sha256: 627e1290956127f733cc622c23e7878e9201b2afe5c2211c46655b213a15da47
Contents?: true
Size: 595 Bytes
Versions: 9
Compression:
Stored size: 595 Bytes
Contents
require 'rspec' require 'rb-fsevent' RSpec.configure do |config| config.color_enabled = true config.filter_run :focus => true config.run_all_when_everything_filtered = true config.before(:each) do @fixture_path = Pathname.new(File.expand_path('../fixtures/', __FILE__)) end config.before(:all) do system "cd ext; ruby extconf.rb" puts "fsevent_watch compiled" end config.after(:all) do gem_root = Pathname.new(File.expand_path('../../', __FILE__)) system "rm -rf #{gem_root.join('bin')}" system "rm #{gem_root.join('ext/Makefile')}" end end
Version data entries
9 entries across 9 versions & 3 rubygems