#!/bin/sh

if [ -f Gemfile ]; then
  ruby -S bundle exec rake $_TASK
else
  ruby -S rake $_TASK
fi
