byte-chan™ deeba9420f | ||
---|---|---|
README.md | ||
createdb.rb | ||
favicon.png | ||
server.rb | ||
sql.rb |
README.md
simplePoll
simplePoll is a simple poll service powered by Ruby, Sinatra and SQLite. Static files are loaded into memory to improve performance. Using advanced IP address technology, users can only submit one answer for polls.
simplePoll also offers a simple API for poll information in JSON format:
/api/<question_id> => {
"id": question_id,
"text": "Question text",
"answers": [
{
"id": answer_id,
"text": "Answer 1",
"count": 3
},
{
"id": answer_id,
"text": "Answer 2"
"count": 37547821
}
]
}