Sha256: 6d96d1feed8c0e0092e70a9c1fb13f9e031804086e386bfde92f0060e3f58275
Contents?: true
Size: 549 Bytes
Versions: 1
Compression:
Stored size: 549 Bytes
Contents
# encoding: utf-8 # # This file is part of the mamertes 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"] 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 !~ /^(bin|lib)/ end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
mamertes-2.4.2 | spec/coverage_helper.rb |