public
Description: The ActiveRecord acts_as_commentable plugin
Homepage: http://juixe.com/svn/acts_as_commentable/
Clone URL: git://github.com/jackdempsey/acts_as_commentable.git
Hoodow (author)
Sat Jul 25 16:23:42 -0700 2009
jackdempsey (committer)
Mon Aug 03 07:50:13 -0700 2009
acts_as_commentable / CHANGELOG
100644 14 lines (12 sloc) 0.752 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
* Changes in version 72c1a4b3dfffaebe2dc25fcea09f9481305fc7e3
  - bumped version to 2.0.2
  - moved the setting of the default order for comments from inside the plugin
    to the generated Comment model. This will help with the current bug in Rails
    that prevents people from overriding this. Now they can just delete from the model,
    set it differently, etc.
* revision 8: Changed has_many :dependent => true to :dependent => :destroy for Rails 1.2.2
                 + Thanks Josh Martin
              Added an order clause in the has_many relationship.
              Made comment column type to text from string in migration example in README
                 + Thanks Patrick Crowley
              Added this CHANGELOG file.