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