
Engine is now tested standalone by leveraging a dummy rails app Enable Guard for speedy testing Move factories to the more standard location `spec/factories/*` Update README with a Testing section Rename migrations to contain datetimestamps for their version to fix migration order issues when migrating the dummy application
10 lines
305 B
Ruby
Executable file
10 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
|