Sha256: e70091302448c1db45870759a3f69593322c82cb9e2e49eda123620c0f18bbd1
Contents?: true
Size: 523 Bytes
Versions: 9
Compression:
Stored size: 523 Bytes
Contents
# # This file is part of the lazier 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 !~ /^lib/ end end
Version data entries
9 entries across 9 versions & 1 rubygems