Class: Eco::API::UseCases::Default::Utils::SortCsv

Inherits:
Custom::UseCase show all
Defined in:
lib/eco/api/usecases/default/utils/sort_csv_case.rb,
lib/eco/api/usecases/default/utils/cli/sort_csv_cli.rb

Defined Under Namespace

Classes: Cli

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#cli_apply!, #initialize

Methods included from Common::Loaders::UseCase::CliIdentify

#cli, #cli!

Methods included from Common::Loaders::UseCase::TargetModel

#target_model

Methods included from Common::Loaders::UseCase::Type

#type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!, original_name

Constructor Details

This class inherits a constructor from Eco::API::Common::Loaders::UseCase

Instance Method Details

#main(*_args) ⇒ Object



7
8
9
10
11
12
13
14
15
# File 'lib/eco/api/usecases/default/utils/sort_csv_case.rb', line 7

def main(*_args)
  if simulate?
    count = Eco::CSV.count(input_file)
    log(:info) { "CSV '#{input_file}' has #{count} rows." }
  else
    group_input_rows
    generate_file
  end
end