Sha256: 16ffb67506eee52d808f7569f50735df169b18108a56561970c35a045e6c6b3f
Contents?: true
Size: 584 Bytes
Versions: 11
Compression:
Stored size: 584 Bytes
Contents
# encoding: utf-8 # # This file is part of the devdnsd 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\/devdnsd\/patches/ || path !~ /^(bin|lib)/ end end
Version data entries
11 entries across 11 versions & 1 rubygems