Class: Exceler::Item

Inherits:
Object
  • Object
show all
Defined in:
lib/exceler.rb

Overview

実施状況を確認するアイテム

Constant Summary collapse

COMPLETE =
1
INCOMPLETE =
2

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeItem

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

#assignObject

Returns the value of attribute assign.



72
73
74
# File 'lib/exceler.rb', line 72

def assign
  @assign
end

#contentObject

Returns the value of attribute content.



70
71
72
# File 'lib/exceler.rb', line 70

def content
  @content
end

#limitObject

Returns the value of attribute limit.



74
75
76
# File 'lib/exceler.rb', line 74

def limit
  @limit
end

#startObject

Returns the value of attribute start.



73
74
75
# File 'lib/exceler.rb', line 73

def start
  @start
end

#stateObject

Returns the value of attribute state.



71
72
73
# File 'lib/exceler.rb', line 71

def state
  @state
end