Sha256: 87040fc0ff8f5e024e834f2017261b429e33575e1357734c4810052de5ca4973
Contents?: true
Size: 541 Bytes
Versions: 12
Compression:
Stored size: 541 Bytes
Contents
begin require 'bundler' rescue LoadError => e warn e.message warn "Run `gem install bundler` to install Bundler." exit e.status_code end begin Bundler.setup(:default, :development, :test) rescue Bundler::BundlerError => e warn e.message warn "Run `bundle install` to install missing gems." exit e.status_code end def support_file_path(relative_path) return File.expand_path(File.join("spec_support", relative_path), File.dirname(__FILE__)) end require "minitest/autorun" # require 'minitest/hell' # parallelize testing
Version data entries
12 entries across 12 versions & 1 rubygems