Cucumber:

* Profile
* Browse code
* Sceleton for main features
* Wiki
* Commits
This commit is contained in:
Dmitriy Zaporozhets 2012-06-15 07:15:28 +03:00 committed by randx
parent 6ff99fe945
commit 5bbf3ccf05
37 changed files with 560 additions and 62 deletions

10
script/cucumber Executable file
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