Skip to content

Instantly share code, notes, and snippets.

@simonbaird
Created January 6, 2011 15:09
Show Gist options
  • Save simonbaird/767990 to your computer and use it in GitHub Desktop.
Save simonbaird/767990 to your computer and use it in GitHub Desktop.
class Date
# Going to be lazy here...
[:beginning_of_fortnight, :end_of_fortnight, :next_fortnight].each do |method|
define_method(method) do |*args|
self.to_time.send(method,*args).to_date
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment