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

Version Path
guard-1.0.0 lib/vendor/darwin/spec/spec_helper.rb
middleman-core-3.0.0.beta.1 lib/middleman-core/vendor/darwin/spec/spec_helper.rb
guard-0.10.0 lib/vendor/darwin/spec/spec_helper.rb
guard-0.9.4 lib/vendor/darwin/spec/spec_helper.rb
guard-0.9.3 lib/vendor/darwin/spec/spec_helper.rb
guard-0.9.2 lib/vendor/darwin/spec/spec_helper.rb
guard-0.9.1 lib/vendor/darwin/spec/spec_helper.rb
guard-0.9.0 lib/vendor/darwin/spec/spec_helper.rb
joshbuddy-guard-0.10.0 lib/vendor/darwin/spec/spec_helper.rb