Sha256: 781330486003c29a8ec139b1d928cb7fb78cc7eaac1644d59b155b5c840dfd9f

Contents?: true

Size: 735 Bytes

Versions: 18

Compression:

Stored size: 735 Bytes

Contents

require 'simplecov'

module SimpleCov
  module Configuration
    def clean_filters
      @filters = []
    end
  end
end

SimpleCov.configure do
  clean_filters
  load_profile 'test_frameworks'
end

ENV['COVERAGE'] && SimpleCov.start do
  add_filter '/.rvm/'
  add_filter '/.rubies/'
  add_filter '/vendor/'
end
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
$LOAD_PATH.unshift(File.dirname(__FILE__))

require 'rspec'
require 'git-ready'

# Requires supporting files with custom matchers and macros, etc,
# in ./support/ and its subdirectories.
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

RSpec.configure do |config|
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
git-ready-0.9.8 spec/spec_helper.rb
git-ready-0.9.0 spec/spec_helper.rb
git-ready-0.8.15 spec/spec_helper.rb
git-ready-0.8.14 spec/spec_helper.rb
git-ready-0.8.13 spec/spec_helper.rb
git-ready-0.8.12 spec/spec_helper.rb
git-ready-0.8.11 spec/spec_helper.rb
git-ready-0.8.10 spec/spec_helper.rb
git-ready-0.8.9 spec/spec_helper.rb
git-ready-0.8.8 spec/spec_helper.rb
git-ready-0.8.7 spec/spec_helper.rb
git-ready-0.8.6 spec/spec_helper.rb
git-ready-0.8.5 spec/spec_helper.rb
git-ready-0.8.4 spec/spec_helper.rb
git-ready-0.8.3 spec/spec_helper.rb
git-ready-0.8.2 spec/spec_helper.rb
git-ready-0.8.1 spec/spec_helper.rb
git-ready-0.8.0 spec/spec_helper.rb