Sha256: 3db6cfe51e52a618d677e74eef09f7f1120a861e82081d8c34a25ab986aeacb3
Contents?: true
Size: 535 Bytes
Versions: 161
Compression:
Stored size: 535 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; rake" puts "fsevent_watch compiled" end config.after(:all) do gem_root = Pathname.new(File.expand_path('../../', __FILE__)) system "rm -rf #{gem_root.join('bin')}" end end
Version data entries
161 entries across 66 versions & 9 rubygems