Sha256: b4d0cebe4af68cf9089d032e0b76a220d54a99a346fa1072a740213fde4ee6ed

Contents?: true

Size: 472 Bytes

Versions: 1

Compression:

Stored size: 472 Bytes

Contents

# encoding: utf-8
require 'rspec'
require 'simplecov'
require 'simplecov-json'

SimpleCov.configure do
  root File.join(File.dirname(__FILE__), '..')
  project_name 'Ruby JWT - Ruby JSON Web Token implementation'
  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
    SimpleCov::Formatter::HTMLFormatter,
    SimpleCov::Formatter::JSONFormatter
  ]

  add_filter 'spec'
end

SimpleCov.start if ENV['COVERAGE']

require "#{File.dirname(__FILE__)}/../lib/jwt.rb"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jwt-1.5.1 spec/helper.rb