Cross Reference: proof_status.rb
xref
: /
ontohub
/
app
/
models
/
proof_status.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
proof_status.rb revision 63f9ea6c6ef0939175d71d4b63889887de7ecb90
class
ProofStatus
<
ActiveRecord
::
Base
self.primary
_key
= :
identifier
attr_accessible
:
label
, :
description
, :
identifier
, :
name
, :
category
validates_presence_of
:
label
def
to_s
identifier
end
def
to_param
identifier
end
def
decisive
?
%w
(
solved
deductive
preserving
)
.
include
?
(
category
)
end
end