Class: Braid::Commands::Diff

Inherits:
Braid::Command show all
Defined in:
lib/braid/commands/diff.rb

Instance Method Summary collapse

Methods inherited from Braid::Command

#config, #force?, msg, #msg, run, #verbose?

Methods included from Operations::VersionControl

#git, #git_cache

Instance Method Details

#run(path) ⇒ Object



4
5
6
7
8
9
10
# File 'lib/braid/commands/diff.rb', line 4

def run(path)
  mirror = config.get!(path)
  setup_remote(mirror)

  diff = mirror.diff
  puts diff unless diff.empty?
end