Search code examples
ruby-on-railsvoting

How to add karma to users on Thumbs Up on Rails


I am using thumbs_up gem for Rails and looking for how can you add more karma to a user programmatically? Or initialize a user with 100 karma?


Solution

  • Even easier, just adjust it as you display it! In your view for example,

    <%= user.karma + 10 %>