bin/pave in pave-0.8.0 vs bin/pave in pave-0.9.0

- old
+ new

@@ -203,9 +203,18 @@ name = args.first || "#{File.basename(Dir.pwd)}" Pave::Database.new(name).push end end +command :"files:cache:clear" do |c| + c.syntax = "pave cache:clear" + c.description = "Empty the project's files/cache and files/tmp directories." + c.action do + Pave::Files.clear_cache + end +end +alias_command :"cache:clear", :"files:cache:clear" + command :"files:pull" do |c| c.syntax = "pave files:pull" c.description = "Download the project's live files directory." c.action do |args| remote = args.first || "live"