Is there a poll for Ruby on Rails?

I am looking for a simple quiz in Ruby on Rails. It should present the user with multiple choice questions (radio buttons, only checkboxes), calculate the correct / incorrect answers and display the results at the end. The quiz will have about 25 questions - 1 question per page. It also needs to integrate with the site that I create, so it cannot be a standalone site or a third-party site.

So far, I have found this stone that looks promising: https://github.com/NUBIC/surveyor

Does anyone know of any other Quiz gems in Rails?

+6
source share
1 answer

The survey matrix is ​​quite powerful, and I can recommend it. There is one thing you should note: you write the survey in dsl (a ruby ​​file with a special, clear syntax), and then run the rake command. This means that it is very useful for a one-time survey in which the developer can generate it (much easier and faster than doing it manually), but not if you want the non-technical person to create the polls.

+6
source

Source: https://habr.com/ru/post/914349/


All Articles