Sha256: 43079a48f85cd56fd8c00c6ef008ad73b6dc7d787091e76a1292cf4eed126a57

Contents?: true

Size: 622 Bytes

Versions: 8

Compression:

Stored size: 622 Bytes

Contents

$LOAD_PATH << File.expand_path('../../lib', __FILE__)

if !ENV['BUILD']
  require 'rubygems'
  require 'bundler'

  if ENV['COV']
    require 'simplecov'
    SimpleCov.profiles.define :app do
      add_group 'bin', '/bin'
      add_group 'lib', '/lib'
      add_filter '/vendor/'
      add_filter '/spec/'
    end
    SimpleCov.start :app
  else
    #require 'coveralls'
    #Coveralls.wear!
    require "codeclimate-test-reporter"
    CodeClimate::TestReporter.start
  end
end

require 'hieracles'

RSpec.configure do |config|
  config.mock_with :rspec
  config.expect_with :rspec do |c|
    c.syntax = :expect
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hieracles-0.2.0 spec/spec_helper.rb
hieracles-0.1.7 spec/spec_helper.rb
hieracles-0.1.6 spec/spec_helper.rb
hieracles-0.1.5 spec/spec_helper.rb
hieracles-0.1.4 spec/spec_helper.rb
hieracles-0.1.3 spec/spec_helper.rb
hieracles-0.1.2 spec/spec_helper.rb
hieracles-0.1.1 spec/spec_helper.rb