Class: Lazylead::Task::Free
- Inherits:
-
Object
- Object
- Lazylead::Task::Free
- Defined in:
- lib/lazylead/task/loading.rb
Overview
The teammate without tasks.
Instance Attribute Summary collapse
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #free? ⇒ Boolean
-
#initialize(id, name) ⇒ Free
constructor
A new instance of Free.
- #next ⇒ Object
Constructor Details
#initialize(id, name) ⇒ Free
Returns a new instance of Free.
80 81 82 83 |
# File 'lib/lazylead/task/loading.rb', line 80 def initialize(id, name) @id = id @name = name end |
Instance Attribute Details
#id ⇒ Object (readonly)
Returns the value of attribute id.
78 79 80 |
# File 'lib/lazylead/task/loading.rb', line 78 def id @id end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
78 79 80 |
# File 'lib/lazylead/task/loading.rb', line 78 def name @name end |
Instance Method Details
#free? ⇒ Boolean
85 86 87 |
# File 'lib/lazylead/task/loading.rb', line 85 def free? true end |
#next ⇒ Object
89 90 91 |
# File 'lib/lazylead/task/loading.rb', line 89 def next "" end |