Skip to content

Commit c60f773

Browse files
committed
fixed issue that prevents the use of the acts_as_voteable plugin
1 parent 571650b commit c60f773

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,8 @@ Added new class method for Comment: "self.build_from(object, user_id, comment_te
1515
- This method cleans up the code inside the controllers.
1616
Added new class method for Comment: "has_children?" that will return true or false depending on if a comment has children
1717
Updated deprecated code in instance method "comments_ordered_by_submitted"
18-
- changed "self.type.name" to "self.class.name"
18+
- changed "self.type.name" to "self.class.name"
19+
20+
v0.1.2
21+
22+
fixed a problem that arises when trying to use the acts_as_voteable plugin with your comments

README

+6
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ Install
7777
@comment.children
7878

7979

80+
*If you plan to use the acts_as_voteable plugin with your comment system be sure to uncomment two things:
81+
82+
in lib/comment.rb uncomment the line "acts_as_voteable"
83+
in lib/acts_as_commentable_with_threading.rb uncomment the line "include Juixe::Acts::Voteable" near the top
84+
85+
8086

8187

8288

lib/acts_as_commentable_with_threading.rb

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
require 'awesome_nested_set'
33
ActiveRecord::Base.class_eval do
44
include CollectiveIdea::Acts::NestedSet
5+
#include Juixe::Acts::Voteable #<-- uncomment this if you have installed and wish to use the acts_as_voteable plugin
56
end
67
require 'comment'
78

0 commit comments

Comments
 (0)