Sha256: 3633a3b5829ae8de160324fa427598e96857a85c160e01660cf29e86dbf78f50

Contents?: true

Size: 451 Bytes

Versions: 9

Compression:

Stored size: 451 Bytes

Contents

# frozen_string_literal: true

if ENV['CI'] || (defined?(:RUBY_ENGINE) && RUBY_ENGINE != 'rbx')
  require 'coveralls'
  Coveralls.wear! do
    add_filter 'spec'
  end
end

require 'bundler'
Bundler.require

require 'gurke'

Dir[File.expand_path('spec/support/**/*.rb')].each {|f| require f }

module Helper
  def unindent(str)
    str.rstrip.gsub(/^\./, '')
  end
end

RSpec.configure do |config|
  config.order = 'random'
  config.include Helper
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
gurke-3.3.4 spec/spec_helper.rb
gurke-3.3.3 spec/spec_helper.rb
gurke-3.3.2 spec/spec_helper.rb
gurke-3.3.1 spec/spec_helper.rb
gurke-3.2.2 spec/spec_helper.rb
gurke-3.2.1 spec/spec_helper.rb
gurke-3.2.0 spec/spec_helper.rb
gurke-3.1.0 spec/spec_helper.rb
gurke-3.0.0 spec/spec_helper.rb