Project

robut-quiz

0.0
No commit activity in last 3 years
No release in over 3 years
Robut plugin that provides quiz asking functionality.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 0.3
 Project Readme

Robut-Quiz

A Plugin for Robut that allows you to ask questions and collect the results from all participants within the chatroom.

Usage

Yes/No Question (Polar)

   user_a  > @robut ask 'Do you want to go to the bar at 4:30?'
   robut   > @user I have enqueued your question
   robut   > @all Question: 'Do you want to go to the bar at 4:30?'
   user_a  > @robut answer YES
   user_b  > @robut answer yes
   user_c  > @robut answer n
   robut   > @all The results are in for 'Do you want to go to the bar at 4:30?':
             2 YES votes and 1 NO vote

Scale/Range Questions

   user_a  > @robut ask range 'How much did you like the bar we went to last week?' 1..10
   robut   > @user I have enqueued your question
   robut   > @all Question 'How much did you like the bar we went to last week?' (1..10)
   user_a  > @robut answer 1
   user_b  > @robut answer 5
   user_c  > @robut answer 10
   robut   > @all The results are in for 'How much did you like the bar we went to last week?':
             3 votes with a mean of 5.333333

Choice Questions

   user_a  > @robut ask choice 'What drink should I order?' 'PBR', 'Martini', 'Bourbon'
   robut   > @user I have enqueued your question
   robut   > @all Question 'What drink should I order?' (1..10)
   user_a  > @robut answer PBR
   user_b  > @robut answer Martini
   user_c  > @robut answer Martini
   robut   > @all The results are in for 'What drink should I order?':
             1 'PBR', 2 'Martini'

Installation

Install the gem

gem install robut-quiz

Add the plugin to your Chatfile

require 'robut_quiz'

Robut::Plugin.plugins << Robut::Plugin::Quiz