lib/guard/commands/change.rb in guard-2.9.0 vs lib/guard/commands/change.rb in guard-2.9.1

- old
+ new

@@ -1,8 +1,7 @@ require "pry" -# TODO: remove require "guard" module Guard module Commands class Change @@ -21,10 +20,10 @@ if files.empty? output.puts "Please specify a file." return end - ::Guard.async_queue_add(modified: files, added: [], removed: []) + Guard.async_queue_add(modified: files, added: [], removed: []) end end end end end