Given the following route:
match "/articles/(:year/(:month/(:day)))" => "articles#index", :constraints => { :year => /\d{4}/, :month => /\d{2}/, :day => /\d{2}/ }
And the following set of URLs:
/articles/2010
/articles/2010/09
/articles/2010/09/08
Does ActiveRecord offer any sort of built-in find method that would allow me to find articles by searching through timestamps with an optionally specific date?