module Etat::ActiveRecord

Public Instance Methods

state() click to toggle source
# File lib/etat/active_record.rb, line 5
def state
  if attributes['state']
    attributes['state'].to_sym
  else
    attributes['state']
  end
end