class Applb::CLI::Apply

Public Class Methods

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

Public Instance Methods

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