Sha256: 8b525605c613ff6a8de3385ecea7067ccde5abd5b972db3c07a08afe2722d0c6

Contents?: true

Size: 495 Bytes

Versions: 15

Compression:

Stored size: 495 Bytes

Contents

if ENV['COVERAGE']
	begin
		require 'simplecov'
		
		SimpleCov.start do
			add_filter "/spec/"
		end
		
		if ENV['TRAVIS']
			require 'coveralls'
			Coveralls.wear!
		end
	rescue LoadError
		warn "Could not load simplecov: #{$!}"
	end
end

require "bundler/setup"
require "utopia"

RSpec.configure do |config|
	# Enable flags like --only-failures and --next-failure
	config.example_status_persistence_file_path = ".rspec_status"

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

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
utopia-2.5.4 spec/spec_helper.rb
utopia-2.5.3 spec/spec_helper.rb
utopia-2.5.1 spec/spec_helper.rb
utopia-2.5.0 spec/spec_helper.rb
utopia-2.4.1 spec/spec_helper.rb
utopia-2.4.0 spec/spec_helper.rb
utopia-2.3.0 spec/spec_helper.rb
utopia-2.2.0 spec/spec_helper.rb
utopia-2.1.2 spec/spec_helper.rb
utopia-2.1.1 spec/spec_helper.rb
utopia-2.1.0 spec/spec_helper.rb
utopia-2.0.3 spec/spec_helper.rb
utopia-2.0.2 spec/spec_helper.rb
utopia-2.0.1 spec/spec_helper.rb
utopia-2.0.0 spec/spec_helper.rb