Class: RubyHackernews::VotingInfo
- Inherits:
-
Object
- Object
- RubyHackernews::VotingInfo
- Defined in:
- lib/ruby-hackernews/domain/entry/voting_info.rb
Instance Attribute Summary collapse
-
#downvote ⇒ Object
readonly
Returns the value of attribute downvote.
-
#score ⇒ Object
readonly
Returns the value of attribute score.
-
#upvote ⇒ Object
readonly
Returns the value of attribute upvote.
Instance Method Summary collapse
-
#initialize(score, upvote, downvote) ⇒ VotingInfo
constructor
A new instance of VotingInfo.
Constructor Details
#initialize(score, upvote, downvote) ⇒ VotingInfo
Returns a new instance of VotingInfo.
9 10 11 12 13 |
# File 'lib/ruby-hackernews/domain/entry/voting_info.rb', line 9 def initialize(score, upvote, downvote) @score = score @upvote = upvote @downvote = downvote end |
Instance Attribute Details
#downvote ⇒ Object (readonly)
Returns the value of attribute downvote.
7 8 9 |
# File 'lib/ruby-hackernews/domain/entry/voting_info.rb', line 7 def downvote @downvote end |
#score ⇒ Object (readonly)
Returns the value of attribute score.
5 6 7 |
# File 'lib/ruby-hackernews/domain/entry/voting_info.rb', line 5 def score @score end |
#upvote ⇒ Object (readonly)
Returns the value of attribute upvote.
6 7 8 |
# File 'lib/ruby-hackernews/domain/entry/voting_info.rb', line 6 def upvote @upvote end |