commontator 4.4.1 → 4.5.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 +4 -4
- data/README.md +1 -1
- data/app/assets/images/commontator/downvote.png +0 -0
- data/app/assets/images/commontator/downvote_active.png +0 -0
- data/app/assets/images/commontator/downvote_disabled.png +0 -0
- data/app/assets/images/commontator/downvote_hover.png +0 -0
- data/app/assets/images/commontator/upvote.png +0 -0
- data/app/assets/images/commontator/upvote_active.png +0 -0
- data/app/assets/images/commontator/upvote_disabled.png +0 -0
- data/app/assets/images/commontator/upvote_hover.png +0 -0
- data/app/assets/stylesheets/commontator/comments.css +17 -14
- data/app/assets/stylesheets/commontator/threads.css +48 -0
- data/app/models/commontator/thread.rb +12 -0
- data/app/views/commontator/comments/_votes.html.erb +8 -6
- data/app/views/commontator/shared/_thread.html.erb +9 -4
- data/app/views/commontator/threads/_reply.html.erb +17 -0
- data/app/views/commontator/threads/_show.html.erb +22 -17
- data/app/views/commontator/threads/show.js.erb +3 -1
- data/config/initializers/commontator.rb +31 -6
- data/lib/commontator.rb +3 -1
- data/lib/commontator/controller_includes.rb +3 -0
- data/lib/commontator/remote_link_renderer.rb +10 -0
- data/lib/commontator/shared_helper.rb +1 -1
- data/lib/commontator/version.rb +1 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +4120 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/72b63dddbc5c995f79af8e3c94904fd9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a473b3873e554893372a53d71f5e9879 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/a77b1a9223d168112e1705c29220116f +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/afa63eb365bdf4f42584b17ac9176b9d +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/d2244ccef8e05bb993f75715af0344cc +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/decb63cac838a5314aa0c22a979f5ac9 +0 -0
- data/spec/dummy/tmp/cache/assets/test/sprockets/f721383d531f067d82b071e14aed7a92 +0 -0
- metadata +8 -2
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: commontator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dante Soares
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-03-
|
11
|
+
date: 2014-03-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -91,8 +91,12 @@ files:
|
|
91
91
|
- README.md
|
92
92
|
- Rakefile
|
93
93
|
- app/assets/images/commontator/downvote.png
|
94
|
+
- app/assets/images/commontator/downvote_active.png
|
95
|
+
- app/assets/images/commontator/downvote_disabled.png
|
94
96
|
- app/assets/images/commontator/downvote_hover.png
|
95
97
|
- app/assets/images/commontator/upvote.png
|
98
|
+
- app/assets/images/commontator/upvote_active.png
|
99
|
+
- app/assets/images/commontator/upvote_disabled.png
|
96
100
|
- app/assets/images/commontator/upvote_hover.png
|
97
101
|
- app/assets/stylesheets/commontator/application.css
|
98
102
|
- app/assets/stylesheets/commontator/comments.css
|
@@ -123,6 +127,7 @@ files:
|
|
123
127
|
- app/views/commontator/subscriptions/_link.html.erb
|
124
128
|
- app/views/commontator/subscriptions/subscribe.js.erb
|
125
129
|
- app/views/commontator/subscriptions_mailer/comment_created.html.erb
|
130
|
+
- app/views/commontator/threads/_reply.html.erb
|
126
131
|
- app/views/commontator/threads/_show.html.erb
|
127
132
|
- app/views/commontator/threads/show.js.erb
|
128
133
|
- config/initializers/commontator.rb
|
@@ -136,6 +141,7 @@ files:
|
|
136
141
|
- lib/commontator/commontator_config.rb
|
137
142
|
- lib/commontator/controller_includes.rb
|
138
143
|
- lib/commontator/engine.rb
|
144
|
+
- lib/commontator/remote_link_renderer.rb
|
139
145
|
- lib/commontator/security_transgression.rb
|
140
146
|
- lib/commontator/shared_helper.rb
|
141
147
|
- lib/commontator/version.rb
|