Class: Teodoro::Empresa::ArquivoDataPRE

Inherits:
Object
  • Object
show all
Defined in:
lib/teodoro/empresa/arquivo_data_pre.rb

Instance Method Summary collapse

Instance Method Details

#inserir_matricula_do_trabalhador(matricula_do_trabalhador) ⇒ Object



14
15
16
17
18
19
20
21
22
23
# File 'lib/teodoro/empresa/arquivo_data_pre.rb', line 14

def inserir_matricula_do_trabalhador(matricula_do_trabalhador)
  File
    .readlines(caminho)
    .then do |linhas_originais|
      File.open(caminho, 'w') do |file|
        (linhas_originais + ["Matricula=#{matricula_do_trabalhador}"])
          .then { file.puts(_1) }
      end
    end
end