class PortalModule::Command::Dts

Public Instance Methods

download(org, filepath) click to toggle source
# File lib/portal_module/command/dts.rb, line 61
def download org, filepath
  cl = client.dts
  cl.download org, filepath

ensure
  client.logout
end
upload(org, filepath) click to toggle source
# File lib/portal_module/command/dts.rb, line 34
def upload org, filepath
  cl = client.dts
  cl.upload org, filepath

ensure
  client.logout
end