voteable_matt38 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_matt38.rb +20 -0
- metadata +44 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 4304154c8721b52d5ca2ce4d9cf1f5a2457210f9
|
4
|
+
data.tar.gz: c2703482a12892941184c4683b7cb09a77c5b0c7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: bc3558451222b8191d1c9047ad8624c072b9c69562f2d21b29d148dfac3d59213935aeeaeaa750cea2853c64de458453afb6ce1d05712403aa6f31a64491acc6
|
7
|
+
data.tar.gz: f6bbb05eef5e181f72322f82d924f4b2b47a5e4e82c1a36ac30aa664c9fc0aa6a918566cc8fcb947fde4fac78669ab5ea20dd7adc849f8f14440f2fe7e5b9bee
|
@@ -0,0 +1,20 @@
|
|
1
|
+
module Voteable # This is the actual gem.
|
2
|
+
extend ActiveSupport::Concern
|
3
|
+
|
4
|
+
included do
|
5
|
+
has_many :votes, as: :voteable
|
6
|
+
end
|
7
|
+
|
8
|
+
def total_votes
|
9
|
+
self.up_votes - self.down_votes
|
10
|
+
end
|
11
|
+
|
12
|
+
def up_votes
|
13
|
+
self.votes.where(vote: true).size
|
14
|
+
end
|
15
|
+
|
16
|
+
def down_votes
|
17
|
+
self.votes.where(vote: false).size
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
metadata
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: voteable_matt38
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Matt Malone
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-03-27 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: The best voting gem 38 times
|
14
|
+
email: mattagape@me.com
|
15
|
+
executables: []
|
16
|
+
extensions: []
|
17
|
+
extra_rdoc_files: []
|
18
|
+
files:
|
19
|
+
- lib/voteable_matt38.rb
|
20
|
+
homepage: http://github.com
|
21
|
+
licenses:
|
22
|
+
- MIT
|
23
|
+
metadata: {}
|
24
|
+
post_install_message:
|
25
|
+
rdoc_options: []
|
26
|
+
require_paths:
|
27
|
+
- lib
|
28
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
29
|
+
requirements:
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
34
|
+
requirements:
|
35
|
+
- - ">="
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0'
|
38
|
+
requirements: []
|
39
|
+
rubyforge_project:
|
40
|
+
rubygems_version: 2.2.2
|
41
|
+
signing_key:
|
42
|
+
specification_version: 4
|
43
|
+
summary: A voting gem 38 times
|
44
|
+
test_files: []
|