Sha256: 071555637cb003b434faf149e46dd91582d32456b330c72e6ea1aafa950f8d7d
Contents?: true
Size: 308 Bytes
Versions: 126
Compression:
Stored size: 308 Bytes
Contents
# frozen_string_literal: true class ReeDatetime::IsBefore include Ree::FnDSL fn :is_before doc("Returns true if the date_time_start falls before <tt>date_time_end</tt>.") contract(DateTime, DateTime => Bool) def call(date_time_start, date_time_end) date_time_start < date_time_end end end
Version data entries
126 entries across 126 versions & 1 rubygems