For this assessment you'll be creating any sort of CRUD app. The app should be a custom app that is created to track something important to you. Whether that's your golf club collection, or a travel app. These types of apps are generally referred to as CRUD (Create Read Update Delete apps) or simple Content Management Systems.
- Build an MVC Sinatra Application.
- Use ActiveRecord with Sinatra.
- Use Multiple Models.
- Use at least one
has_many
relationship - Must have user accounts. The user that created a given piece of content should be the only person who can modify that content
- You should validate user input to ensure that bad data isn't created
- Golf Club Organizer
- Todo List. Each task is part of a list
- Collection of useful Ruby resources
If you are unsure about a domain or can't come up with an idea, feel free to reach out to fullstack@learn.co for some advice.
As we spent a lot of time working with domains similiar to these during the Sinatra curriculum we do not accept these domain designs.
- Twitter Clone
- Blog Application
You do not have to make your routes any more complicated than http://yourapp.com/posts/1
. We want to see you build a great CRUD application but we are not requiring you to build the next AirBnB.
- Create a new repository on GitHub for your Sinatra Application.
- When you create the Sinatra app for your assessment, add the spec.md file from this repo to the root directory of the project, commit it to Git and push it up to GitHub.
- Build your application. Make sure to commit early and commit often. Commit messages should be meaningful (clearly describe what you're doing in the commit) and accurate (there should be nothing in the commit that doesn't match the description in the commit message). Good rule of thumb is to commit every 3-7 mins of actual coding time. Most of your commits should have under 15 lines of code and a 2 line commit is perfectly acceptable. This is important and you'll be graded on this.
- While you're working on it, record a 30 min coding session with your favorite screen capture tool. During the session, either think out loud or not. It's up to you. You don't need to submit the video, but we may ask for it at a later time.
- Make sure to create a good README.md with a short description, install instructions, a contributors guide and a link to the license for your code.
- Make sure to check each box in your spec.md (replace the space between the square braces with an x) and explain next to each one how you've met the requirement before you submit your project.
- Prepare a short video demo (narration helps!) describing how a user would interact with your working application.
- Write a blog post about the project and process.
- When done, submit your GitHub repo's url, a link to your video demo, and a link to your blog post in the corresponding text boxes in the right rail. Hit "I'm done" to wrap it up.
Unlike the rest of the curriculum, if you have any questions about your assessment or need help with it, please don’t use the Ask New Question feature. Rather than working with Learn Experts, please reach out to the Learn Instructor responsible for this section instead - Luke / luke@flatironschool.com / learn-co slack: luke.
We'll send an email to you soon to schedule a pairing process. If you don't hear from us in 48 hours after submission, get in touch!
- Confirm your application meets the requirements above. We'll go through your app and ask you to show us how it meets the requirements above. 5-10 mins.
- Explain your code from execution point to exit point. We're making sure you wrote it and understand how it works. 10-15 mins.
- Live coding, doing a refactoring exercise to make sure you're comfortable working with your code. 10-15 mins.
- Use the best vocabulary you can. Technical terms allow for you to be more precise which makes conversations about code much easier.
- If you make a mistake, correct yourself! We all make mistakes, I promise.
- Trust yourself
- Trust us
- Think on your feet. Feel free to look things up while you're pairing with us. You'll be asked to expand on concepts you implemented and you will be pushed to the edge of your knowledge.
- Explain the details. We're curious!
- You're going to learn a ton. We will give pointers and show you ways to improve your code. This isn't telling you that your code is wrong, it's simply us teaching. Whatever you don't quite understand will be explained
- You won't be told you're ever wrong
- You won't be yelled at, belittled, or scolded
- You won't be put on the spot without support
- There's nothing you can do to instantly fail or blow it.
View Sinatra Assessment on Learn.co and start learning to code for free.