removed last traces of Time#map method which was

causing issues with Active Record
This commit is contained in:
2010-09-28 19:16:11 +03:00
parent 9bbd974a75
commit 5afb6bc2b9
2 changed files with 1 additions and 3 deletions

View File

@@ -83,7 +83,7 @@ module TimeExt
# Dynamically define convenience methods, like #each_hour instead of #each(:hour).
[:year, :month, :day, :hour, :min, :sec].each do |unit|
[:each, :beginning_of_each, :map_each, :map_beginning_of_each, :map].each do |method|
[:each, :beginning_of_each, :map_each, :map_beginning_of_each].each do |method|
define_method "#{method}_#{unit}" do |*args, &block|
send(method, unit, *args, &block)
end