Skip to content

Epicodus Week 9 Day 1 - Stack Overflow clone using rails, and incorporating AJAX

Notifications You must be signed in to change notification settings

robinheinze/stack_overflow_clone

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stack Overflow clone, first day using AJAX

Let's make a clone of Stack Overflow.

DONE As a user, I want to ask a question, so that I can get help with a programming problem I'm having. Users must have an account and sign in to ask questions.

DONE As a user, I want to answer a question, so that I can help somebody else out. Use AJAX to add a response to the question's page without reloading it!

DONE As a user, I want to view a questions and its responses, so that I can get help if I'm having the same problem.

DONE As a user who asked a question, I want to choose the best answer, so that it is displayed before the other answers and future users see it first. Use AJAX when the user makes their choice, so that the page doesn't need to reload.

As a user who didn't ask a question, I want to vote on which answer I think is best, so that higher-voted answers display higher on the page. Another good candidate for AJAX! Hint: Make votes a join table between users and answers.

As a user, I want to search questions, so that it's easier to find what I'm looking for. Hint: Use the Textacular gem for searching.

As a user, I want my searches to also look through responses, to increase the chances of finding what I'm looking for. Hint: Create a PORO called Search that runs searches on Question and Response and combines the answers.

As a user, I want to vote up questions I like, so that awesome questions get displayed higher on the list of questions and on search results. Hint: make votes polymorphic.

About

Epicodus Week 9 Day 1 - Stack Overflow clone using rails, and incorporating AJAX

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published