This Rails application is intended to be used as an opportunity for students to measure their own learning from week 2 of module 2 of the back-end program of the Turing School of Software & Design.
Fork this repository and clone your newly created repository. At the end of one hour, push your code to your repository and create a pull request to this repository.
- Perform the usual setup steps after cloning a Rails application (
bundle
,rake db:{drop,create,migrate,seed}
etc)
- TDD all new work; you may postpone model tests for attribute validations only
- No form input is required
- No visual styling is required
User Story 1 of 4
As a visitor,
When I visit '/astronauts'
I see a list of astronauts with the following info:
- Name
- Age
- Job
(e.g. "Name: Neil Armstrong, Age: 37, Job: Commander")
User Story 2 of 4
As a visitor,
When I visit '/astronauts'
I see the average age of all astronauts.
(e.g. "Average Age: 34")
User Story 3 of 4
As a visitor,
When I visit '/astronauts'
I see a list of the space missions' in alphabetical order for each astronaut.
(e.g "Apollo 13"
"Capricorn 4"
"Gemini 7")
User Story 4 of 4
As a visitor,
When I visit '/astronauts'
I see the total time in space for each astronaut.
(e.g. "Name: Neil Armstrong, Age: 37, Job: Commander, Total Time in Space: 760 days")