Class: Exceler::Item
- Inherits:
-
Object
- Object
- Exceler::Item
- Defined in:
- lib/exceler.rb
Overview
実施状況を確認するアイテム
Constant Summary collapse
- COMPLETE =
1- INCOMPLETE =
2
Instance Attribute Summary collapse
-
#assign ⇒ Object
Returns the value of attribute assign.
-
#content ⇒ Object
Returns the value of attribute content.
-
#limit ⇒ Object
Returns the value of attribute limit.
-
#start ⇒ Object
Returns the value of attribute start.
-
#state ⇒ Object
Returns the value of attribute state.
Instance Method Summary collapse
-
#initialize ⇒ Item
constructor
A new instance of Item.
Constructor Details
#initialize ⇒ Item
Returns a new instance of Item.
62 63 64 65 66 67 68 |
# File 'lib/exceler.rb', line 62 def initialize @content = nil @state = INCOMPLETE @assign = nil @start = nil @limit = nil end |
Instance Attribute Details
#assign ⇒ Object
Returns the value of attribute assign.
72 73 74 |
# File 'lib/exceler.rb', line 72 def assign @assign end |
#content ⇒ Object
Returns the value of attribute content.
70 71 72 |
# File 'lib/exceler.rb', line 70 def content @content end |
#limit ⇒ Object
Returns the value of attribute limit.
74 75 76 |
# File 'lib/exceler.rb', line 74 def limit @limit end |
#start ⇒ Object
Returns the value of attribute start.
73 74 75 |
# File 'lib/exceler.rb', line 73 def start @start end |
#state ⇒ Object
Returns the value of attribute state.
71 72 73 |
# File 'lib/exceler.rb', line 71 def state @state end |