Method: R10K::Module::SVN#sync

Defined in:
lib/r10k/module/svn.rb

#sync(opts = {}) ⇒ Object



69
70
71
72
73
74
75
76
77
78
# File 'lib/r10k/module/svn.rb', line 69

def sync(opts={})
  case status
  when :absent
    install
  when :mismatched
    reinstall
  when :outdated
    update
  end
end