lib/braid/commands/list.rb in braid-1.0.10 vs lib/braid/commands/list.rb in braid-1.0.11
- old
+ new
@@ -1,38 +1,10 @@
module Braid
module Commands
class List < Command
def run(path = nil, options = {})
- with_reset_on_error do
- path ? list_one(path, options) : list_all(options)
- end
+ msg "WARNING: list command is deprecated. Please use \"braid status\" instead.\n"
+ Command.run(:status, path, options)
end
-
- protected
- def list_all(options = {})
- options.reject! { |k, v| %w(revision head).include?(k) }
- print "\n"
- msg "Listing all mirrors.\n=======================================================\n"
- config.mirrors.each do |path|
- mirror = config.get!(path)
- print path.to_s
- print ' (' + mirror.base_revision + ')'
- print ' [LOCKED]' if mirror.locked?
- setup_remote(mirror)
- msg "Fetching new commits for '#{mirror.path}'." if verbose?
- mirror.fetch
- new_revision = validate_new_revision(mirror, options['revision'])
- print ' (Remote Modified)' if new_revision.to_s != mirror.base_revision.to_s
- local_file_count = git.read_ls_files(mirror.path).split.size
- if 0 == local_file_count
- print ' (Removed Locally)'
- elsif !mirror.diff.empty?
- print ' (Locally Modified)'
- end
- print "\n"
- end
- print "\n"
- end
-
end
end
end