Class: Eco::API::UseCases::DefaultCases::CsvToTree
- Inherits:
-
Common::Loaders::UseCase
- Object
- Common::Loaders::Base
- Common::Loaders::CaseBase
- Common::Loaders::UseCase
- Eco::API::UseCases::DefaultCases::CsvToTree
- Defined in:
- lib/eco/api/usecases/default_cases/csv_to_tree_case.rb,
lib/eco/api/usecases/default_cases/csv_to_tree_case/node.rb,
lib/eco/api/usecases/default_cases/csv_to_tree_case/helper.rb,
lib/eco/api/usecases/default_cases/csv_to_tree_case/treeify.rb,
lib/eco/api/usecases/default_cases/csv_to_tree_case/nodes_cleaner.rb
Defined Under Namespace
Modules: Helper, NodesCleaner, Treeify Classes: Node
Constant Summary collapse
- TIME_FORMAT =
'%Y%m%dT%H%M%S'
Instance Attribute Summary
Attributes inherited from Common::Loaders::CaseBase
Instance Method Summary collapse
Methods inherited from Common::Loaders::UseCase
Methods inherited from Common::Loaders::CaseBase
Methods inherited from Common::Loaders::Base
<=>, created_at, #initialize, #name, 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
Constructor Details
This class inherits a constructor from Eco::API::Common::Loaders::UseCase
Instance Method Details
#main(session, options, usecase) ⇒ Object
7 8 9 10 11 12 13 14 15 16 |
# File 'lib/eco/api/usecases/default_cases/csv_to_tree_case.rb', line 7 def main(session, , usecase) [:end_get] = false tree_struct = Helper.treeify(Helper.csv_nodes(input_file)) File.open(output_file, "w") do |fd| json = tree_struct.to_json fd << json end logger.info("Saved structure in '#{output_file}'") end |