Sha256: 97946fc18a777222cd321be42bf1bbd2aa422089a67d874bc5c52befd0891858
Contents?: true
Size: 340 Bytes
Versions: 6
Compression:
Stored size: 340 Bytes
Contents
require 'rake' # Use the latest MiniTest gem instead of the buggy # version included with Ruby 1.9.2. gem 'minitest', '2.2.2' # Load the test files from the command line. ARGV.each do |f| next if f =~ /^-/ if f =~ /\*/ FileList[f].to_a.each { |fn| require File.expand_path(fn) } else require File.expand_path(f) end end
Version data entries
6 entries across 6 versions & 1 rubygems