Sha256: dfaed63a302591793b963244a4a1d1f7ff341e5132732b37d6c75ba3c9fe0bb3

Contents?: true

Size: 533 Bytes

Versions: 4

Compression:

Stored size: 533 Bytes

Contents

#!/usr/bin/env ruby

# Make sure we can get to hypercuke on the load path
unless $:.any? {|path| path =~ /hypercuke\/lib/ }
  lib_path = File.expand_path( File.join( File.dirname(__FILE__), *%w[.. lib] ) )
  $:.unshift(lib_path) 
end

# Load the gem
begin
  require 'hypercuke'
rescue LoadError
  require 'rubygems' # worth a shot before just dying
  require 'hypercuke'
end

# Hand the Hypercuke command off to the CLI, which will parse and
# Kernel#exec the appropriate Cucumber command
Hypercuke::CLI.exec ARGV, output_to: STDOUT

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
hypercuke-0.5.2 bin/hcu
hypercuke-0.5.1 bin/hcu
hypercuke-0.5.0 bin/hcu
hypercuke-0.4.1 bin/hcu