Sha256: 36b4eabafb3f6f24f9f2a874a6ce2e8e3c03fa7c66a58caed6b9d98ca12e41e0
Contents?: true
Size: 937 Bytes
Versions: 4
Compression:
Stored size: 937 Bytes
Contents
#-- # Cloud Foundry 2012.02.03 Beta # Copyright (c) [2009-2012] VMware, Inc. All Rights Reserved. # # This product is licensed to you under the Apache License, Version 2.0 (the "License"). # You may not use this product except in compliance with the License. # # This product includes a number of subcomponents with # separate copyright notices and license terms. Your use of these # subcomponents is subject to the terms and conditions of the # subcomponent's license, as noted in the LICENSE file. #++ if ENV['COVERAGE'] require "simplecov" if ENV['COVERAGE'] =~ /rcov/ require "simplecov-rcov" SimpleCov.formatter = SimpleCov::Formatter::RcovFormatter end SimpleCov.add_filter "^#{File.dirname(__FILE__)}" if ENV['COVERAGE'] =~ /exclude-spec/ SimpleCov.add_filter "^#{File.expand_path(File.join(File.dirname(__FILE__), "..", "vendor"))}" if ENV['COVERAGE'] =~ /exclude-vendor/ SimpleCov.start end require 'rspec'
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
cf-uaa-lib-3.0.0 | spec/spec_helper.rb |
cf-uaa-lib-2.1.0 | spec/spec_helper.rb |
cf-uaa-lib-2.0.1 | spec/spec_helper.rb |
cf-uaa-lib-2.0.0 | spec/spec_helper.rb |