Module: VoteableSteven2016

Extended by:
ActiveSupport::Concern
Defined in:
lib/voteable_steven_2016.rb

Instance Method Summary collapse

Instance Method Details

#down_voteObject



16
17
18
# File 'lib/voteable_steven_2016.rb', line 16

def down_vote
  self.votes.where(vote: false).size
end

#total_votesObject



8
9
10
# File 'lib/voteable_steven_2016.rb', line 8

def total_votes
  up_vote - down_vote
end

#up_voteObject



12
13
14
# File 'lib/voteable_steven_2016.rb', line 12

def up_vote
  self.votes.where(vote: true).size
end