Class: Eco::API::UseCases::Default::People::Treat::Analyse
- Inherits:
-
Common::Loaders::UseCase
- Object
- Common::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
Instance Attribute Summary collapse
-
#people ⇒ Object
readonly
Returns the value of attribute people.
Attributes included from Language::AuxiliarLogger
Instance Method Summary collapse
Methods inherited from Common::Loaders::UseCase
cli, cli!, #cli_apply!, #initialize, type, #type
Methods inherited from Common::Loaders::CaseBase
Methods inherited from Common::Loaders::Base
<=>, created_at, #initialize, set_created_at!
Methods included from Common::ClassHelpers
#class_resolver, #descendants, #descendants?, #inheritable_attrs, #inheritable_class_vars, #inherited, #instance_variable_name, #new_class, #resolve_class, #to_constant
Methods included from Language::AuxiliarLogger
Constructor Details
This class inherits a constructor from Eco::API::Common::Loaders::UseCase
Instance Attribute Details
#people ⇒ Object (readonly)
Returns the value of attribute people.
5 6 7 |
# File 'lib/eco/api/usecases/default/people/treat/analyse_people_case.rb', line 5 def people @people end |
Instance Method Details
#main(_people, _session, options, _usecase) ⇒ 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(_people, _session, , _usecase) [: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 |