class Kashi::CLI::Export
Public Class Methods
new(filepath, options)
click to toggle source
# File lib/kashi/cli.rb, line 68 def initialize(filepath, options) @filepath = filepath @options = options end
Public Instance Methods
run()
click to toggle source
# File lib/kashi/cli.rb, line 73 def run require 'kashi/client' result = Client.new(@filepath, @options).export end