class Simnos::CLI::Apply

Public Class Methods

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

Public Instance Methods

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