What’s next
We covered a lot of stuff. We set up the computer for local development. We created a web application and deployed it to a server. Great... »
We covered a lot of stuff. We set up the computer for local development. We created a web application and deployed it to a server. Great... »
What is deployment? Deployment makes our application available for use. For a web application it means putting it on the Internet in most cases. This is... »
Showing a completed task Let’s add our status to show view. In order to do it, we need to add a new paragraph tag. If a... »
Task Views Yes, there are many task views. One for each controller action. This is what edit view looks like. Views are simply HTML templates with... »
Task model Rails has a particular file structure. Models are located under app/models folder. Controllers are under app/controllers. Views are under app/views. We need to edit... »