user1069624
user1069624

Reputation: 571

Rails gem for adding quizzes to my rails application

I started by writing my own quiz handling module, but then I realized I needed a lot more options. I was adding just multiple choice questions, but I need short answer questions, fill in the blanks and so on. I tried looking for a gem that would do that but could only find Survey which only provides MCQs. Are there any gems out there that can help me add quizzes to my application?

By add quizzes I mean, to allow a user through the application to create a quiz with different types of questions and define their answers, and then other users will be able to answer them.

Thank you,

Upvotes: 1

Views: 3087

Answers (1)

Ayrad
Ayrad

Reputation: 4056

You can try to make it yourself. It will help you learn RAILS and Ruby and have something that is more appropriate for your needs.

You can also look at this railcasts which shows you how to work with forms and as an example it uses surveys.

http://railscasts.com/episodes/197-nested-model-form-part-2?view=asciicast

Upvotes: 2

Related Questions