a course registration api with rails 5 with Test Driven Development
a TA-reference solution for fullstack job question 2
- model for students, teachers and courses
- many-to-many-relationships: student-teacher, student-courses
- one-to-many-relationships: course- teacher
- api: get students/:id, get /teachers, delete /teachets/:id
- ruby 2.3.1
- rails 5
- rspec 3.5.4
$ git clone git@github.com:cndaniel/enrollment-api.git
$ cd enrollment-api
$ bundle install
$ bundle exec rake db:create
$ bundle exec rake db:migrate
$ bundle exec rspec --format documentation
2017