jekyll/script/cucumber

12 lines
232 B
Bash
Executable File

#!/usr/bin/env bash
if ruby --version | grep -q "jruby"
then
echo "Move along, we are not testing features on JRuby right now."
exit 0
else
time ruby -S bundle exec cucumber \
-f Features::Support::Overview \
"$@"
fi