Sha256: b4f24843d0c777e5462e33d7c1bb16ff059a622e633595efce7230761ab3b895
Contents?: true
Size: 804 Bytes
Versions: 6
Compression:
Stored size: 804 Bytes
Contents
require 'simplecov' require 'coveralls' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter ] module SimpleCov::Configuration def clean_filters @filters = [] end end SimpleCov.configure do clean_filters load_profile 'test_frameworks' end ENV["COVERAGE"] && SimpleCov.start do add_filter "/.rvm/" end require 'rubygems' require 'bundler' begin Bundler.setup(:default, :development) rescue Bundler::BundlerError => e $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require "minitest/autorun" require 'shoulda' $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib')) $LOAD_PATH.unshift(File.dirname(__FILE__)) require 'textfile'
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
textfile-1.0.6 | test/helper.rb |
textfile-1.0.5 | test/helper.rb |
textfile-1.0.4 | test/helper.rb |
textfile-1.0.3 | test/helper.rb |
textfile-1.0.2 | test/helper.rb |
textfile-1.0.1 | test/helper.rb |