Sha256: 33a3af762348013998680322fb457da81c34b1b67083c8d880e913bbe593df9f

Contents?: true

Size: 646 Bytes

Versions: 1

Compression:

Stored size: 646 Bytes

Contents

require 'rubygems'
require 'bundler/setup'

require 'rbconfig'

unless RUBY_PLATFORM == 'java'
  require 'simplecov'
end

RSpec.configure do |c|
  if !ENV['TRAVIS']
    if RbConfig::CONFIG['host_os'] =~ /darwin/i
      c.formatter = 'NyanCatMusicFormatter'
    else
      # No music allowed for neckbeards or polo shirts.
      c.formatter = 'NyanCatFormatter'
    end
  end
end

$stderr.puts <<EOWARNING
----------------------------------------------------------------------------
WARNING: These specs do a lot of process spawning, which is relatively slow.
----------------------------------------------------------------------------
EOWARNING

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
git-duet-0.1.3 spec/spec_helper.rb