From d946cf2f071d54f8b6b84efd2743ad8d7fa633c8 Mon Sep 17 00:00:00 2001 From: Scott Pierce Date: Thu, 17 Apr 2014 01:56:59 -0500 Subject: [PATCH] show all tasks (rake --tasks) as the default task --- Rakefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Rakefile b/Rakefile index cec8e058fa2..f1de1f8e60b 100644 --- a/Rakefile +++ b/Rakefile @@ -32,6 +32,10 @@ if (/cygwin|mswin|mingw|bccwin|wince|emx/ =~ RUBY_PLATFORM) != nil `chcp 65001` end +task :default do + system "rake --tasks" +end + desc "Initial setup for Octopress: copies the default theme into the path of Jekyll's generator. Rake install defaults to rake install[classic] to install a different theme run rake install[some_theme_name]" task :install, :theme do |t, args| if File.directory?(source_dir) || File.directory?("sass")