Class: Fontist::ImportCLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/fontist/import_cli.rb

Instance Method Summary collapse

Instance Method Details

#macosObject



9
10
11
12
13
14
15
16
17
# File 'lib/fontist/import_cli.rb', line 9

def macos
  if options[:formulas_path]
    Fontist.formulas_path = Pathname.new(options[:formulas_path])
  end

  require_relative "import/macos"
  Import::Macos.new(options).call
  CLI::STATUS_SUCCESS
end