Skip to content

Instantly share code, notes, and snippets.

@coop
Created July 1, 2011 07:14
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 coop/1058028 to your computer and use it in GitHub Desktop.
Save coop/1058028 to your computer and use it in GitHub Desktop.
class Order < ActiveRecord::Base
def each_day_in_period &block
current_date = start
while current_date < self.end
block.call current_date
current_date += 1.day
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment