mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
2f48f7c48c
MSP-11153 Add cucumber-rails for testing msfconsole's loading of database.yml from different paths.
11 lines
305 B
Ruby
Executable File
11 lines
305 B
Ruby
Executable File
#!/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
|