Sha256: 0e9b0faddc68a8d8472c4d2e8e5089d27acb667d8ee426fda73b07d2473dd248

Contents?: true

Size: 624 Bytes

Versions: 12

Compression:

Stored size: 624 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

12 entries across 12 versions & 1 rubygems

Version Path
hieracles-0.4.2 spec/spec_helper.rb
hieracles-0.4.1 spec/spec_helper.rb
hieracles-0.4.0 spec/spec_helper.rb
hieracles-0.3.6 spec/spec_helper.rb
hieracles-0.3.5 spec/spec_helper.rb
hieracles-0.3.4 spec/spec_helper.rb
hieracles-0.3.3 spec/spec_helper.rb
hieracles-0.3.2 spec/spec_helper.rb
hieracles-0.3.1 spec/spec_helper.rb
hieracles-0.3.0 spec/spec_helper.rb
hieracles-0.2.2 spec/spec_helper.rb
hieracles-0.2.1 spec/spec_helper.rb