对于像我这样不喜欢在 gemfile 中为较小的东西添加额外 gem 的人,会选择:
def morning
DateTime.now.beginning_of_day + (6.5).hours
end
def midnight
DateTime.now.end_of_day
# Or DateTime.now.at_midnight + 1
end
DateTime 为我们提供了更多选项,例如:at_beginning_of_day、:at_beginning_of_month、:at_beginning_of_quarter、:at_beginning_of_week、:at_beginning_of_year、:at_end_of_month、:at_end_of_quarter、:at_end_of_week、:at_end_of_year、:at_midnight, :awesome,_inspec :beginning_of_month, :beginning_of_quarter, :beginning_of_week, :beginning_of_year, :wday, :sunday?, :monday?, :tuesday?, :wednesday?, :thursday?, :friday?, :saturday?
就这样做(相信我你不会后悔的):
DateTime.now.methods.sort