commontator 4.1.2 → 4.2.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/mailers/commontator/subscriptions_mailer.rb +8 -7
- data/app/mailers/commontator/subscriptions_mailer.rb~ +8 -9
- data/app/models/commontator/comment.rb +10 -6
- data/app/models/commontator/comment.rb~ +10 -6
- data/app/models/commontator/thread.rb +6 -2
- data/app/models/commontator/thread.rb~ +6 -3
- data/app/views/commontator/comments/_list.html.erb +11 -0
- data/app/views/commontator/comments/_list.html.erb~ +11 -0
- data/app/views/commontator/comments/create.js.erb +6 -11
- data/app/views/commontator/comments/create.js.erb~ +12 -0
- data/app/views/commontator/comments/delete.js.erb~ +2 -2
- data/app/views/commontator/comments/edit.js.erb~ +5 -0
- data/app/views/commontator/comments/new.js.erb +1 -1
- data/app/views/commontator/comments/new.js.erb~ +12 -0
- data/app/views/commontator/comments/update.js.erb~ +2 -2
- data/app/views/commontator/threads/_show.html.erb +3 -6
- data/app/views/commontator/threads/_show.html.erb~ +4 -1
- data/config/initializers/commontator.rb +24 -16
- data/config/initializers/commontator.rb~ +22 -15
- data/lib/commontator.rb +2 -1
- data/lib/commontator.rb~ +4 -3
- data/lib/commontator/version.rb +1 -1
- data/lib/commontator/version.rb~ +1 -1
- data/spec/dummy/config/initializers/commontator.rb +24 -11
- data/spec/dummy/config/initializers/commontator.rb~ +24 -11
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/test.log +4162 -0
- metadata +7 -2
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.2.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: 2013-11-
|
11
|
+
date: 2013-11-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -119,6 +119,7 @@ files:
|
|
119
119
|
- app/views/commontator/shared/_thread.html.erb
|
120
120
|
- app/views/commontator/comments/_votes.html.erb
|
121
121
|
- app/views/commontator/comments/create.js.erb
|
122
|
+
- app/views/commontator/comments/_list.html.erb
|
122
123
|
- app/views/commontator/comments/_show.html.erb
|
123
124
|
- app/views/commontator/comments/_actions.html.erb
|
124
125
|
- app/views/commontator/comments/update.js.erb~
|
@@ -127,10 +128,14 @@ files:
|
|
127
128
|
- app/views/commontator/comments/delete.js.erb
|
128
129
|
- app/views/commontator/comments/new.js.erb
|
129
130
|
- app/views/commontator/comments/_body.html.erb
|
131
|
+
- app/views/commontator/comments/create.js.erb~
|
130
132
|
- app/views/commontator/comments/edit.js.erb
|
131
133
|
- app/views/commontator/comments/_votes.html.erb~
|
134
|
+
- app/views/commontator/comments/edit.js.erb~
|
132
135
|
- app/views/commontator/comments/vote.js.erb
|
136
|
+
- app/views/commontator/comments/new.js.erb~
|
133
137
|
- app/views/commontator/comments/_form.html.erb
|
138
|
+
- app/views/commontator/comments/_list.html.erb~
|
134
139
|
- app/views/commontator/comments/delete.js.erb~
|
135
140
|
- app/mailers/commontator/subscriptions_mailer.rb
|
136
141
|
- app/mailers/commontator/subscriptions_mailer.rb~
|