Skip to content

Instantly share code, notes, and snippets.

@padi
Created October 5, 2011 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save padi/1263438 to your computer and use it in GitHub Desktop.
Save padi/1263438 to your computer and use it in GitHub Desktop.
Rake Task for Updating Conditions
desc 'Update traffic condition'
task :update_condition => :environment do
Report.all.each do |report|
report.update_attribute(:conditions, Tweet.new(report).conditions) unless report.user
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment