class Fission::Lease

def expired?

attribute to the current date/time.
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