Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Feedback plugin for Rails 3

Is there an alternative to Rails Feedback plugin - https://github.com/jsboulanger/feedback ? I want something to work with Rails 3

like image 269
Ved Avatar asked Nov 03 '11 11:11

Ved


2 Answers

Why not use plain old ruby-on-rails programming? You have users, you have content items, you introduce a new object/table "Feedback" which belongs to user and belongs to content item. If you have several content types, you can use a polymorphic associations.

Now you put the attributes you like in the object (stars, grades, comments, public/private, etc). You put the forms for entering and displaying the feedback into partials and put them everywhere you need them. Later you can add some fancy ajax-stuff.

Even if this may take a little longer, you use the time to master the framework, so I think the time is well invested.

like image 88
Meier Avatar answered Nov 02 '22 15:11

Meier


Did you try rewritten version for rails 3? Also another version here?

like image 39
Alper Karapınar Avatar answered Nov 02 '22 14:11

Alper Karapınar