Class: Eco::API::UseCases::Default::People::Treat::OrgDataConvertCase
- Inherits:
-
Common::Loaders::UseCase
- Object
- Common::Loaders::Base
- Common::Loaders::CaseBase
- Common::Loaders::UseCase
- Eco::API::UseCases::Default::People::Treat::OrgDataConvertCase
- Defined in:
- lib/eco/api/usecases/default/people/treat/org_data_convert_case.rb
Instance Attribute Summary
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 Method Details
#main(people, _session, _options, _usecase) ⇒ Object
25 26 27 |
# File 'lib/eco/api/usecases/default/people/treat/org_data_convert_case.rb', line 25 def main(people, _session, , _usecase) org_data_convert(people) end |
#org_data_convert(people) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/eco/api/usecases/default/people/treat/org_data_convert_case.rb', line 5 def org_data_convert(people) log(:info) { "Going to convert data from '#{source_enviro}' to '#{ASSETS.active_config}'" } puts "\n" people.each.with_index do |person, i| if (i % 10).zero? percent = i * 100 / people.length print "Processing: #{percent.round}% (#{i}/#{people.length} entries)\r" $stdout.flush end person.id = nil details_convert!(person) account_convert!(person) end people end |