Returns a Duration instance matching the number of weeks provided.
2.weeks # => 14 days
53 54 55
# File 'lib/core_ext/numeric/time.rb', line 53 def weeks CoreExt::Duration.new(self * 7.days, [[:days, self * 7]]) end