Sha256: 13e8f69e61584629cd35d16f887469c62c3a161e06e85bd3e59e6b272ea4698d
Contents?: true
Size: 274 Bytes
Versions: 125
Compression:
Stored size: 274 Bytes
Contents
# frozen_string_literal: true class ReeDate::IsBefore include Ree::FnDSL fn :is_before doc("Returns true if the <tt>date_start</tt> falls before <tt>date_end</tt>.") contract(Date, Date => Bool) def call(date_start, date_end) date_start < date_end end end
Version data entries
125 entries across 125 versions & 1 rubygems