Sha256: ff5240e4377a48e9cf194c83030c18a9a80427e7cb6a764417c9afd294411331
Contents?: true
Size: 558 Bytes
Versions: 19
Compression:
Stored size: 558 Bytes
Contents
#!/usr/bin/env ruby # encoding: utf-8 Dir[File.join(File.dirname(__FILE__), "..", "vendor", "*")].each do |path| if File.directory?(path) && Dir["#{path}/*"].empty? warn "Dependency #{File.basename(path)} in vendor seems to be empty. Run git submodule init && git submodule update to checkout it." elsif File.directory?(path) && File.directory?(File.join(path, "lib")) $:.unshift File.join(path, "lib") end end ARGV.push("spec") if ARGV.empty? load File.expand_path(File.join(File.dirname(__FILE__), "..", "vendor", "rspec", "bin", "spec"))
Version data entries
19 entries across 17 versions & 4 rubygems