├── .gitignore ├── CHANGELOG ├── Gemfile ├── Gemfile.lock ├── MIT-LICENSE ├── README.rdoc ├── Rakefile ├── acts_as_commentable.gemspec ├── init.rb ├── install.rb ├── lib ├── acts_as_commentable.rb ├── comment_methods.rb ├── commentable_methods.rb └── generators │ └── comment │ ├── USAGE │ ├── comment_generator.rb │ └── templates │ ├── comment.rb │ └── create_comments.rb ├── rails └── init.rb └── test ├── acts_as_commentable_test.rb ├── models.rb └── schema.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/MIT-LICENSE -------------------------------------------------------------------------------- /README.rdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/README.rdoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/Rakefile -------------------------------------------------------------------------------- /acts_as_commentable.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/acts_as_commentable.gemspec -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/init.rb -------------------------------------------------------------------------------- /install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/install.rb -------------------------------------------------------------------------------- /lib/acts_as_commentable.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/lib/acts_as_commentable.rb -------------------------------------------------------------------------------- /lib/comment_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/lib/comment_methods.rb -------------------------------------------------------------------------------- /lib/commentable_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/lib/commentable_methods.rb -------------------------------------------------------------------------------- /lib/generators/comment/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/lib/generators/comment/USAGE -------------------------------------------------------------------------------- /lib/generators/comment/comment_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/lib/generators/comment/comment_generator.rb -------------------------------------------------------------------------------- /lib/generators/comment/templates/comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/lib/generators/comment/templates/comment.rb -------------------------------------------------------------------------------- /lib/generators/comment/templates/create_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/lib/generators/comment/templates/create_comments.rb -------------------------------------------------------------------------------- /rails/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/rails/init.rb -------------------------------------------------------------------------------- /test/acts_as_commentable_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/test/acts_as_commentable_test.rb -------------------------------------------------------------------------------- /test/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/test/models.rb -------------------------------------------------------------------------------- /test/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackdempsey/acts_as_commentable/HEAD/test/schema.rb --------------------------------------------------------------------------------