Sha256: 6f017bfb16c439387a7784e2ca4c0fade289af40c7f4429a365f9a0ecc79bad1
Contents?: true
Size: 448 Bytes
Versions: 3
Compression:
Stored size: 448 Bytes
Contents
#!/usr/bin/env ruby require 'trollop' require 'rspactor' require 'rspactor/version' options = Trollop::options do version RSpactor::VERSION opt :clear, "Clear the console beetween each spec(s) run" opt :rspec_version, "Force RSpec Version (1 or 2), normally it should be automatically detected", :type => :int end Trollop::die :rspec_version, "not supported" unless [nil, 1, 2].include?(options[:rspec_version]) RSpactor.start(options)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rspactor-0.7.0.beta.6 | bin/rspactor |
rspactor-0.7.0.beta.5 | bin/rspactor |
rspactor-0.7.0.beta.4 | bin/rspactor |