Sha256: 7a549b336e59f6bddfbfd86ee56df7ce0b82338a4145375c5a745b8684fcd1c0
Contents?: true
Size: 481 Bytes
Versions: 15
Compression:
Stored size: 481 Bytes
Contents
# frozen_string_literal: true require "rake" # Load the test files from the command line. argv = ARGV.select do |argument| begin case argument when /^-/ then argument when /\*/ then FileList[argument].to_a.each do |file| require File.expand_path file end false else require File.expand_path argument false end rescue LoadError => e abort "\nFile does not exist: #{e.path}\n\n" end end ARGV.replace argv
Version data entries
15 entries across 15 versions & 4 rubygems