class Kashi::CLI::Apply

Public Class Methods

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

Public Instance Methods

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