Sha256: 23976092b0252bb915286cb4c96533123b6de051234665e7ad6ed6cec9ad9cb5

Contents?: true

Size: 621 Bytes

Versions: 4

Compression:

Stored size: 621 Bytes

Contents

require 'rspec'
require 'simplecov'
require 'simplecov-json'
require 'codeclimate-test-reporter'
require 'codacy-coverage'

Codacy::Reporter.start

SimpleCov.configure do
  root File.join(File.dirname(__FILE__), '..')
  project_name 'Ruby JWT - Ruby JSON Web Token implementation'
  add_filter 'spec'
end

SimpleCov.start if ENV['COVERAGE']

CERT_PATH = File.join(File.dirname(__FILE__), 'fixtures', 'certs')

RSpec.configure do |config|
  config.expect_with :rspec do |c|
    c.syntax = [:should, :expect]
  end

  config.run_all_when_everything_filtered = true
  config.filter_run :focus

  config.order = 'random'
end

Version data entries

4 entries across 4 versions & 3 rubygems

Version Path
jwtb-2.0.0.beta2.bsk1 spec/spec_helper.rb
jwt-blockstack-2.0.0.beta2 spec/spec_helper.rb
jwt-blockstack-2.0.0.beta1 spec/spec_helper.rb
jwt-2.0.0.beta1 spec/spec_helper.rb