Sha256: 528d95d450102294b179bc65ef332227ecb87b10a897464cb81c9400f85929b4

Contents?: true

Size: 592 Bytes

Versions: 2

Compression:

Stored size: 592 Bytes

Contents

#
# This file is part of the ballast gem. Copyright (C) 2013 and above Shogun <shogun@cowtech.it>.
# Licensed under the MIT license, which can be found at https://choosealicense.com/licenses/mit.
#

require "bundler/setup"

if ENV["COVERAGE"]
  require "simplecov"
  require "coveralls"

  Coveralls.wear! if ENV["CI"]

  SimpleCov.start do
    root = Pathname.new(File.dirname(__FILE__)) + ".."

    add_filter do |src_file|
      path = Pathname.new(src_file.filename).relative_path_from(root).to_s
      path !~ /^lib/
    end
  end
end

require File.dirname(__FILE__) + "/../lib/ballast"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ballast-2.2.6 spec/spec_helper.rb
ballast-2.2.5 spec/spec_helper.rb