I have been using the ruby gem 'acts_as_votable' (https://github.com/ryanto/acts_as_votable) and have been pleased with its ease of use.
My problem arises from the gem's lack of explicit controller creation. Without the controller (and model, so no fallback to attr_accessible) I am unable to edit the strong parameter whitelist. I therefore can't pass a value to a new column I have added to the votes db.
I've tried creating my own Votes controller, pasting in the 'voter_params' (with my additional param) from the gem's lib/extenders/controller.rb resulting in no success.
If anybody knows how I could add to this parameter whitelist it would be much appreciated.
Thanks!