class FilterRename::CLI

Public Class Methods

start() click to toggle source
# File lib/filter_rename/cli.rb, line 134
def self.start
  begin
    options = OptParseMain.parse(ARGV)
    Builder.new(options).send(options.operation)
  rescue => e
    Messages.error e
    exit 1
  end
end