module GitDuplicator

Main module

Public Class Methods

perform(from, to, options) click to toggle source

Perform the duplication @see GitDuplicator::MirrorDuplicator

# File lib/git_duplicator.rb, line 11
def perform(from, to, options)
  MirrorDuplicator.new(from, to, options).perform
end
perform_for_update(from, to, options) click to toggle source

Perform the duplication for updates @see GitDuplicator::UpdateDuplicator

# File lib/git_duplicator.rb, line 17
def perform_for_update(from, to, options)
  UpdateDuplicator.new(from, to, options).perform
end