Posts by CarlosMachado • 15 points
3 posts
-
1
votes1
answer566
viewsQ: Ruby on Rails read csv file and fill table
I have following table news : create_table "noticia", force: true do |t| t.integer "conteudo_id" t.integer "entidade_id" t.integer "imagem_id" t.string "texto" t.datetime "created_at" t.datetime…
-
0
votes1
answer51
viewsQ: Problem timers js
I have a web application and this one has Paginaprincipal, Paginaentidade and Paginanoticia and each of these is associated with a JS file. The goal is to start in the paginaPrincipal and past x…
-
0
votes2
answers220
viewsQ: How to use a Rails cron job to run a program in Java?
Is it possible to use a cron job in Rails to execute a command that runs a class in Java? If so, how?