elight / acts_as_commentable_with_threading

Similar to acts_as_commentable; however, utilizes awesome_nested_set to provide threaded comments

This URL has Read+Write access

elight (author)
Wed May 06 11:21:30 -0700 2009
commit  a2f26cc78ea42f7a5884e34c13895770dd9db9bf
tree    7dcea9ded5a9fa4702b49d9e87d896e86e90305a
parent  fd71fa4c85cdc7a4a29f633f4a34ac2c009cfedc parent  ae35d034ffa6d751b4a1a2ea7a150897d692e413
acts_as_commentable_with_threading / CHANGELOG
100644 22 lines (17 sloc) 0.779 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
v0.1.0
------
Initial Release
 
v0.1.1
------
Fixes to gemspec
 
v0.1.2
------
 
Added new documentation in README that should better help users understand this plugin
Added new instance method "root_comments" that will return all comments belonging to a model except child comments
Added new class method for Comment: "self.build_from(object, user_id, comment_text:string)"
- This method cleans up the code inside the controllers.
Added new class method for Comment: "has_children?" that will return true or false depending on if a comment has children
Updated deprecated code in instance method "comments_ordered_by_submitted"
- changed "self.type.name" to "self.class.name"
 
v0.1.2
 
fixed a problem that arises when trying to use the acts_as_voteable plugin with your comments