Sha256: 2fb8ee94d302e98fe4df2af6cbee2ccb14486c65b42855408dcb3cfc95a4a588

Contents?: true

Size: 555 Bytes

Versions: 28

Compression:

Stored size: 555 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 http://www.opensource.org/licenses/mit-license.php.
#

require "pathname"
require "simplecov"  
require "coveralls"

Coveralls.wear! if ENV["CI"] || ENV["JENKINS_URL"] # Do not load outside Travis

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

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
ballast-2.2.3 spec/coverage_helper.rb
ballast-2.2.2 spec/coverage_helper.rb
ballast-2.2.1 spec/coverage_helper.rb
ballast-2.2.0 spec/coverage_helper.rb
ballast-2.1.3 spec/coverage_helper.rb
ballast-2.1.2 spec/coverage_helper.rb
ballast-2.1.1 spec/coverage_helper.rb
ballast-2.1.0 spec/coverage_helper.rb
ballast-2.0.1 spec/coverage_helper.rb
ballast-2.0.0 spec/coverage_helper.rb
ballast-1.9.3 spec/coverage_helper.rb
ballast-1.9.2 spec/coverage_helper.rb
ballast-1.9.1 spec/coverage_helper.rb
ballast-1.9.0 spec/coverage_helper.rb
ballast-1.8.0 spec/coverage_helper.rb
ballast-1.7.0 spec/coverage_helper.rb
ballast-1.6.0 spec/coverage_helper.rb
ballast-1.5.3 spec/coverage_helper.rb
ballast-1.5.2 spec/coverage_helper.rb
ballast-1.5.1 spec/coverage_helper.rb