module Pullable

Constants

VERSION

Public Class Methods

process!(path, method = 'merge') click to toggle source
# File lib/pullable.rb, line 7
def self.process!(path, method = 'merge')
  if method == '' || method == nil
    method = 'merge'
  end

  Pullable::Directory.process!(path, method)
end