Skip to content

Commit

Permalink
update completed reqs list
Browse files Browse the repository at this point in the history
  • Loading branch information
christinalcole committed Aug 21, 2017
1 parent 31222cc commit d5601a8
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

Specs:
- [x] Using Ruby on Rails for the project
- [ ] Include at least one has_many relationship (x has_many y e.g. User has_many Recipes)
- [ ] Include at least one belongs_to relationship (x belongs_to y e.g. Post belongs_to User)
- [ ] Include at least one has_many through relationship (x has_many y through z e.g. Recipe has_many Items through Ingredients)
- [x] Include at least one has_many relationship (x has_many y e.g. User has_many Recipes)
- User has_many Positions, Boats
- [x] Include at least one belongs_to relationship (x belongs_to y e.g. Post belongs_to User)
- Position/Boat belongs_to User
- [x] Include at least one has_many through relationship (x has_many y through z e.g. Recipe has_many Items through Ingredients)
- User has_many RaceCrews, has_many Crews through RaceCrews
- [ ] The "through" part of the has_many through includes at least one user submittable attribute (attribute_name e.g. ingredients.quantity)
- [ ] Include reasonable validations for simple model objects (list of model objects with validations e.g. User, Recipe, Ingredient, Item)
- [x] Include reasonable validations for simple model objects (list of model objects with validations e.g. User, Recipe, Ingredient, Item)
- User, Boat, Position, Race, Regatta have validations on model attributes
- [ ] Include a class level ActiveRecord scope method (model object & class method name and URL to see the working feature e.g. User.most_recipes URL: /users/most_recipes)
- [ ] Include a nested form writing to an associated model using a custom attribute writer (form URL, model name e.g. /recipe/new, Item)
- [ ] Include signup (how e.g. Devise)
Expand Down

0 comments on commit d5601a8

Please sign in to comment.