Class: Eco::API::UseCases::Default::People::Treat::Analyse
- Inherits:
-
Common::Loaders::UseCase
- Object
- Loaders::Base
- Common::Loaders::CaseBase
- Common::Loaders::UseCase
- Eco::API::UseCases::Default::People::Treat::Analyse
- Defined in:
- lib/eco/api/usecases/default/people/treat/analyse_people_case.rb,
lib/eco/api/usecases/default/people/treat/cli/analyse_people_cli.rb
Defined Under Namespace
Classes: Cli
Instance Method Summary collapse
Methods inherited from Common::Loaders::UseCase
Methods included from Common::Loaders::UseCase::CliIdentify
Methods included from Common::Loaders::UseCase::TargetModel
Methods included from Common::Loaders::UseCase::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 16 17 18 19 20 21 22 |
# File 'lib/eco/api/usecases/default/people/treat/analyse_people_case.rb', line 7 def main(*_args) [:end_get] = false if [:identify_duplicates] identify_duplicates elsif [:identify_unnamed] identify_unnamed else log(:info) { 'No analysis operation was specified' } end.tap do |people_involved| next unless people_involved to_csv(people_involved) if to_csv? create_people_backup(people_involved) if results_people_backup? end end |