私はそのような問題を抱えています:私はすべてのユーザーとそれに関連するオブジェクトがそれらでいくつかのアクションを実行するようにする必要があります。このファイルは月に1回実行する必要があります(支払い用です)。私はWindowsでプログラミングしていますが、サーバーは*nix上にある可能性があります。
ここで私がコードでやりたいこと:
@users = User.all
@emails ||= Array.new
@amounts||= Array.new
@users.each do |user|
emails.push(user.email)//array of emails
amounts.push(user.websites.amount)//it will be arrray of amounts
//then I will make post request, which I do can with static values
User.allを使用するにはどうすればよいですか?誰かがこれを手伝ってくれますか?