Sha256: 4fba18a159ba1b31337e9aeb03c3c4cb4f4e80a202ac2d2d5d7dc57b344ac37e

Contents?: true

Size: 608 Bytes

Versions: 4

Compression:

Stored size: 608 Bytes

Contents

# coding: utf-8

require 'simplecov'
require 'coveralls'

SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
  SimpleCov::Formatter::HTMLFormatter,
  Coveralls::SimpleCov::Formatter
]

SimpleCov.at_exit do
  File.open(File.join(SimpleCov.coverage_path, 'percent.txt'), 'w') do |f|
    f.write SimpleCov.result.covered_percent
  end
  SimpleCov.result.format!
end
SimpleCov.start

require 'hmac_auth'

RSpec.configure do |config|
  config.treat_symbols_as_metadata_keys_with_true_values = true
  config.run_all_when_everything_filtered = true
  config.filter_run :focus
  config.order = 'random'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hmac_auth-0.1.3 spec/spec_helper.rb
hmac_auth-0.1.2 spec/spec_helper.rb
hmac_auth-0.1.1 spec/spec_helper.rb
hmac_auth-0.1.0 spec/spec_helper.rb