Sha256: 2cdaa82c45372da8f9e565bdc9842e3f134c801d9762cc09eb42c87750c32517
Contents?: true
Size: 633 Bytes
Versions: 3
Compression:
Stored size: 633 Bytes
Contents
require 'simplecov' require 'coveralls' SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[ SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter ] SimpleCov.start do add_filter 'spec' end require 'rspec' require 'webmock/rspec' Dir[File.expand_path('../support/**/*.rb', __FILE__)].each { |f| puts f; require f } RSpec.configure do |config| config.filter_run :focus config.run_all_when_everything_filtered = true if config.files_to_run.one? config.default_formatter = 'doc' end config.profile_examples = 10 config.order = :random Kernel.srand config.seed end require 'exist'
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
exist-0.1.0.beta.6 | spec/spec_helper.rb |
exist-0.1.0.beta.5 | spec/spec_helper.rb |
exist-0.1.0.beta.4 | spec/spec_helper.rb |