class Numeric

def fortnights

2.fortnights # => 4 weeks

Returns a Duration instance matching the number of fortnights provided.
def fortnights
  ActiveSupport::Duration.weeks(self * 2)
end