class Fission::Lease
def expired?
Returns a Boolean. The Boolean is determined by comparing the end
# => true
@lease.expired?
Examples:
Public: Determine if the lease has expired or not.
def expired? @end < DateTime.now end
def expired? @end < DateTime.now end