class Stefon::CLI

This class is responsible for handling the command line interface

Public Instance Methods

run(opts) click to toggle source

The entry point for the application logic

# File lib/stefon/cli.rb, line 7
def run(opts)
  options = opts.merge(Config::Weights.get)
  editor = Stefon::Editor.new(options)
  editor.summarize_results
end