voteable_corey 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/voteable_corey.rb +23 -0
- metadata +43 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 8c2284efeea5dd84748eef7644d177c776ac440c
|
|
4
|
+
data.tar.gz: 2b54c3f3c97f366b88670ea390338f7c7dab1882
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 94c885d39ecf5bd025ddf597e51bf91296d731d14333967647d177a4dc3338eb11f048221243356191184c97d8a3a63ecc56b03918349624876de54cd86dba0c
|
|
7
|
+
data.tar.gz: e2a1756993d7eae132dc70874473ea9b0044a171f50405c951f7ad947eaaa6582c5b8a2800f9564a783b0c3eeed909a6375b8d1248b3bffbe1f3e4add8148a20
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module Voteable
|
|
2
|
+
extend ActiveSupport::Concern
|
|
3
|
+
|
|
4
|
+
included do
|
|
5
|
+
has_many :votes, as: :voteable
|
|
6
|
+
end
|
|
7
|
+
|
|
8
|
+
def up_votes
|
|
9
|
+
self.votes.where(vote: true).size
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def down_votes
|
|
13
|
+
self.votes.where(vote: false).size
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def vote_count
|
|
17
|
+
self.up_votes - self.down_votes
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def has_voted?(user)
|
|
21
|
+
self.votes.where(vote: true, user_id: user).any?
|
|
22
|
+
end
|
|
23
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: voteable_corey
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Corey Condardo
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-08-29 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: The best voting gem ever.
|
|
14
|
+
email: ccondardo@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- lib/voteable_corey.rb
|
|
20
|
+
homepage: http://github.com
|
|
21
|
+
licenses: []
|
|
22
|
+
metadata: {}
|
|
23
|
+
post_install_message:
|
|
24
|
+
rdoc_options: []
|
|
25
|
+
require_paths:
|
|
26
|
+
- lib
|
|
27
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
28
|
+
requirements:
|
|
29
|
+
- - ">="
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '0'
|
|
32
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
33
|
+
requirements:
|
|
34
|
+
- - ">="
|
|
35
|
+
- !ruby/object:Gem::Version
|
|
36
|
+
version: '0'
|
|
37
|
+
requirements: []
|
|
38
|
+
rubyforge_project:
|
|
39
|
+
rubygems_version: 2.2.2
|
|
40
|
+
signing_key:
|
|
41
|
+
specification_version: 4
|
|
42
|
+
summary: A voting gem
|
|
43
|
+
test_files: []
|