module ActiveEntity::Persistence

Active Entity Persistence

Public Instance Methods

destroyed?() click to toggle source
# File lib/active_entity/persistence.rb, line 12
def destroyed?
  false
end
new_record?() click to toggle source
# File lib/active_entity/persistence.rb, line 8
def new_record?
  true
end
persisted?() click to toggle source
# File lib/active_entity/persistence.rb, line 16
def persisted?
  false
end