hours()
Returns a Duration instance matching the number of hours provided.
2.hours # => 2 hours
# File activesupport/lib/active_support/core_ext/numeric/time.rb, line 37 def hours ActiveSupport::Duration.new(self * 3600, [[:hours, self]]) end