Skip to content

Instantly share code, notes, and snippets.

@nkzsdy
Created February 27, 2019 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nkzsdy/9db8a086c051d72622260b90fa3ee2d7 to your computer and use it in GitHub Desktop.
Save nkzsdy/9db8a086c051d72622260b90fa3ee2d7 to your computer and use it in GitHub Desktop.
Rakeタスクをインタラクティブに選択できるfish function
function raket
if test -f Gemfile -o -f .bundle/
set task (bundle exec rake -T | peco | cut -d " " -f 2)
if [ -n "$task" ]
bundle exec rake $task
else
echo "Task execution was interrupted."
end
else
echo "[ERROR]: $pwd maybe not Rails directory."
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment