Add the default cucumber bootstrap files

This commit is contained in:
momoko saunders
2014-06-11 19:47:29 -07:00
parent 4c7a1f84bd
commit a04a72d776
5 changed files with 141 additions and 2929 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/usr/bin/env ruby
vendored_cucumber_bin = Dir["#{File.dirname(__FILE__)}/../vendor/{gems,plugins}/cucumber*/bin/cucumber"].first
if vendored_cucumber_bin
load File.expand_path(vendored_cucumber_bin)
else
require 'rubygems' unless ENV['NO_RUBYGEMS']
require 'cucumber'
load Cucumber::BINARY
end