Class: Eco::API::UseCases::DefaultCases::TagPaths

Inherits:
Common::Loaders::UseCase show all
Defined in:
lib/eco/api/usecases/default_cases/create_tag_paths_case.rb

Instance Method Summary collapse

Methods inherited from Common::Loaders::UseCase

#initialize, type, #type

Methods inherited from Common::Loaders::CaseBase

#name, name_only_once!

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



5
6
7
8
9
10
11
12
# File 'lib/eco/api/usecases/default_cases/create_tag_paths_case.rb', line 5

def main(session, options, usecase)
  CSV.open("tag_paths.csv", "w") do |csv|
    csv << ["Tag", "Path"]
    tag_paths.each do |values|
      csv << values
    end
  end
end