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