Sha256: 5f472578b7ec360a1dc48caeee14ba1d4575289e03b274747ec1c2852f12bc81
Contents?: true
Size: 555 Bytes
Versions: 2
Compression:
Stored size: 555 Bytes
Contents
#!/usr/bin/env ruby $LOAD_PATH.push File.dirname(__FILE__) + "/../lib" require File.expand_path(File.dirname(__FILE__) + "/../lib/spec") # better stack traces this way $context_runner = ::Spec::Runner::OptionParser.create_context_runner(ARGV, false, STDERR, STDOUT) # If ARGV is a glob, it will actually each over each one of the matching files. ARGV.each do |file_or_dir| if File.directory?(file_or_dir) Dir["#{file_or_dir}/**/*.rb"].each do |file| require file end else require file_or_dir end end $context_runner.run(true)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rspec-0.6.4 | bin/spec |
rspec-0.7.0 | bin/spec |