Sha256: a074f304d394c50c55b733fa714fe1c18229ac7807fb8cc70eec34020f164a54
Contents?: true
Size: 345 Bytes
Versions: 124
Compression:
Stored size: 345 Bytes
Contents
# frozen_string_literal: true class ReeDate::WeeksSince include Ree::FnDSL fn :weeks_since do link :today link :advance end doc("Returns a new date the specified number of weeks in the future.") contract(Nilor[Date], Integer => Date) def call(date = nil, week_count) advance(date || today, weeks: week_count) end end
Version data entries
124 entries across 124 versions & 1 rubygems