class ActiveRecord::Promise::Complete

:nodoc:

def initialize(value)

def initialize(value)
  @value = value
end

def pending?

def pending?
  false
end

def status

def status
  :complete
end

def then

def then
  Complete.new(yield @value)
end