module Transync

Constants

VERSION

Public Class Methods

run(mode) click to toggle source
# File lib/transync.rb, line 8
def self.run(mode)
  if mode == 'x2g' or mode == 'g2x'
    Transync::Runner.sync(mode)
  else
    # will send message to (call) init, test, update
    Transync::Runner.send(mode)
  end
end