Sha256: 3ad3d421e5f90554068f364481f87541559e58f8793a8fe3e5f624f776632f73

Contents?: true

Size: 606 Bytes

Versions: 8

Compression:

Stored size: 606 Bytes

Contents

require 'webmock/rspec'
require 'vcr'
require 'timecop'
require 'nokogiri'
require 'codeclimate-test-reporter'

CodeClimate::TestReporter.start if ENV['CODECLIMATE_REPO_TOKEN']

require 'almanack'

Dir[File.expand_path('../support/*.rb', __FILE__)].each { |file| require file }

RSpec.configure do |config|
  config.include ServerSupport, :feature
  config.include EventMatchers
  config.include TimeComparisonMatchers
end

VCR.configure do |config|
  config.cassette_library_dir = File.expand_path('../fixtures/responses', __FILE__)
  config.ignore_hosts 'codeclimate.com'
  config.hook_into :webmock
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
almanack-1.0.5 spec/spec_helper.rb
almanack-1.0.4 spec/spec_helper.rb
almanack-1.0.3 spec/spec_helper.rb
almanack-1.0.2 spec/spec_helper.rb
almanack-1.0.1 spec/spec_helper.rb
almanack-1.0.0 spec/spec_helper.rb
almanack-1.0.0.pre1 spec/spec_helper.rb
almanack-1.0.0.pre spec/spec_helper.rb