Rake のタスク一覧を表示する

以下のコマンドで rake のタスク一覧を表示できます。

rake -T

rake updater:7020to8010  # build updater for 7.0.2 to 8.0.1
rake updater:8000to8010  # build updater for 8.0.0 to 8.0.1

なお、こちらの一覧は Rakefile のなかで、desc によって task の概要が設定されているもののリストのみ表示されます。

namespace :updater do
  desc "build updater for 7.0.2 to 8.0.1"
  task :"7020to8010" do

  end
  desc "build updater for 8.0.0 to 8.0.1"
  task :"8000to8010" do
   end
end