Skip to content

Instantly share code, notes, and snippets.

@xdite
Created July 7, 2011 11:22
Show Gist options
  • Save xdite/0b3acb50dd1554b1f937 to your computer and use it in GitHub Desktop.
Save xdite/0b3acb50dd1554b1f937 to your computer and use it in GitHub Desktop.
def load_wow_post(amount = 7)
game = Game.wow_game
posts = Post.random_selected.rand_by_game(game.id).in_days(amount).limit(1)
unless posts.blank?
post = posts.shuffle.first
return post
else
load_wow_post(amount*2)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment