Sha256: 904427f3cdc7f2829fcc1486875fd60403126dccb7f91c6f3b32a33cc10ddf6a
Contents?: true
Size: 477 Bytes
Versions: 21
Compression:
Stored size: 477 Bytes
Contents
#!/usr/bin/env ruby $:.unshift(File.dirname(__FILE__) + '/../lib') unless $:.include?(File.dirname(__FILE__) + '/../lib') if(ENV['SIMPLECOV'] && RUBY_VERSION =~ /1\.9/) require 'simplecov' SimpleCov.root(File.expand_path(File.dirname(__FILE__) + '/..')) SimpleCov.start end require 'cucumber/rspec/disable_option_parser' require 'cucumber/cli/main' # The dup is to keep ARGV intact, so that tools like ruby-debug can respawn. Cucumber::Cli::Main.new(ARGV.dup).execute!
Version data entries
21 entries across 21 versions & 1 rubygems