commontator 1.1.2 → 1.1.3
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.
- data/Rakefile +0 -1
- data/app/models/commontator/thread.rb~ +125 -0
- data/app/models/commontator/tree.rb~ +123 -0
- data/db/migrate/0_install.rb +48 -0
- data/db/migrate/{0_install_commontator.rb → 0_install.rb~} +0 -0
- data/lib/commontator.rb +0 -1
- data/lib/commontator.rb~ +2 -3
- data/lib/commontator/version.rb +1 -1
- data/lib/commontator/version.rb~ +1 -1
- data/lib/tasks/commontator_tasks.rake +3 -4
- data/lib/tasks/commontator_tasks.rake~ +4 -3
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +28 -0
- data/spec/dummy/log/test.log +1834 -0
- metadata +6 -3
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: commontator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-06-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -109,7 +109,9 @@ files:
|
|
109
109
|
- app/assets/images/commontator/upvote_hover.png
|
110
110
|
- app/assets/images/commontator/downvote_hover.png
|
111
111
|
- app/assets/images/commontator/upvote.png
|
112
|
+
- app/models/commontator/thread.rb~
|
112
113
|
- app/models/commontator/subscription.rb
|
114
|
+
- app/models/commontator/tree.rb~
|
113
115
|
- app/models/commontator/thread.rb
|
114
116
|
- app/models/commontator/comment.rb
|
115
117
|
- app/models/commontator/comment_observer.rb
|
@@ -135,7 +137,8 @@ files:
|
|
135
137
|
- app/mailers/commontator/subscriptions_mailer.rb
|
136
138
|
- config/routes.rb
|
137
139
|
- config/initializers/commontator.rb
|
138
|
-
- db/migrate/
|
140
|
+
- db/migrate/0_install.rb
|
141
|
+
- db/migrate/0_install.rb~
|
139
142
|
- lib/commontator.rb~
|
140
143
|
- lib/commontator/version.rb~
|
141
144
|
- lib/commontator/commontable_config.rb
|