class Applb::CLI::Export

Public Class Methods

new(filepath, options) click to toggle source
# File lib/applb/cli.rb, line 69
def initialize(filepath, options)
  @filepath = filepath
  @options = options
end

Public Instance Methods

run() click to toggle source
# File lib/applb/cli.rb, line 74
def run
  require 'applb/client'
  result = Client.new(@filepath, @options).export
end