Pauloparakleto / gerenciamento-dos-estudos

Aqui eu gerencio via karban os meus estudos em programação
0 stars 1 forks source link

Module Eval in ruby #92

Open Pauloparakleto opened 1 year ago

Pauloparakleto commented 1 year ago

You found this amazing way of declaring a module in runtime Practice it creating some samples.

def csv_classes
        csv_files.map do |file|
          self.class.module_eval(file.classify).new
        end
end