-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Amper: Kaitlin Forsman #23
base: master
Are you sure you want to change the base?
Commits on Mar 5, 2018
-
Configuration menu - View commit details
-
Copy full SHA for cb02ee6 - Browse repository at this point
Copy the full SHA cb02ee6View commit details -
stubbed some tests for user class and wrote tests and code for user i…
…nitialize method approach
Configuration menu - View commit details
-
Copy full SHA for 385592e - Browse repository at this point
Copy the full SHA 385592eView commit details -
Configuration menu - View commit details
-
Copy full SHA for b9f7f43 - Browse repository at this point
Copy the full SHA b9f7f43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40a50e5 - Browse repository at this point
Copy the full SHA 40a50e5View commit details -
initialized reservation class with attributes: id, room_num, guest, s…
…tart_date, end_date
Configuration menu - View commit details
-
Copy full SHA for 31315fb - Browse repository at this point
Copy the full SHA 31315fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3994a23 - Browse repository at this point
Copy the full SHA 3994a23View commit details
Commits on Mar 6, 2018
-
trying to structure how to store dates and reservations in relation t…
…o each other and within the user class
Configuration menu - View commit details
-
Copy full SHA for 9b9e88f - Browse repository at this point
Copy the full SHA 9b9e88fView commit details -
finished main method and helper method that allows user to look up al…
…l reservations for a given day
Configuration menu - View commit details
-
Copy full SHA for 1166bc7 - Browse repository at this point
Copy the full SHA 1166bc7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9556184 - Browse repository at this point
Copy the full SHA 9556184View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d711e9 - Browse repository at this point
Copy the full SHA 9d711e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for d5ca5a9 - Browse repository at this point
Copy the full SHA d5ca5a9View commit details -
refactored all room and reservation to take Range of dates instead of…
… start_date and end_date, and raises an exception for trying to reserve a room that has preexisting reservation in date range
Configuration menu - View commit details
-
Copy full SHA for fa322f7 - Browse repository at this point
Copy the full SHA fa322f7View commit details -
reworked, restructured, wrote tests and codes for method to present a…
… list of available rooms for a given date_range
Configuration menu - View commit details
-
Copy full SHA for 8cc9a31 - Browse repository at this point
Copy the full SHA 8cc9a31View commit details
Commits on Mar 7, 2018
-
added couple more tests to user_spec to check availability at the end…
…_date and it allows user to make new reservation on a room starting same day as another reservations end_date
Configuration menu - View commit details
-
Copy full SHA for 1ec19e7 - Browse repository at this point
Copy the full SHA 1ec19e7View commit details -
double-checked functionality of find_available room: it works and doe…
…s what it's supposed....why?
Configuration menu - View commit details
-
Copy full SHA for 2d777b5 - Browse repository at this point
Copy the full SHA 2d777b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2289465 - Browse repository at this point
Copy the full SHA 2289465View commit details
Commits on Mar 8, 2018
-
initialized Block spec and added notes to user for tests and content …
…that still needs to be dealt with
Configuration menu - View commit details
-
Copy full SHA for 977b8dd - Browse repository at this point
Copy the full SHA 977b8ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4035cf4 - Browse repository at this point
Copy the full SHA 4035cf4View commit details -
finished block versions of find_available_rooms and reserve_room with…
… tests (so much refactoring to consider...)
Configuration menu - View commit details
-
Copy full SHA for c99adbc - Browse repository at this point
Copy the full SHA c99adbcView commit details -
finished discounted calculate_reservation_cost method to finish first…
… version of the Block Class
Configuration menu - View commit details
-
Copy full SHA for 6865048 - Browse repository at this point
Copy the full SHA 6865048View commit details -
Configuration menu - View commit details
-
Copy full SHA for f84fde8 - Browse repository at this point
Copy the full SHA f84fde8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b2607a - Browse repository at this point
Copy the full SHA 6b2607aView commit details -
finished functionality for creating a block within User and adjusting…
… user to include blocks within availibility
Configuration menu - View commit details
-
Copy full SHA for 89358fb - Browse repository at this point
Copy the full SHA 89358fbView commit details
Commits on Mar 10, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 001caa3 - Browse repository at this point
Copy the full SHA 001caa3View commit details -
finished last piece of functionality, allowing User to search for ava…
…ilable rooms in a block -- finished first attempt at all basic requirements for this assignment
Configuration menu - View commit details
-
Copy full SHA for daa21aa - Browse repository at this point
Copy the full SHA daa21aaView commit details -
Configuration menu - View commit details
-
Copy full SHA for bea1945 - Browse repository at this point
Copy the full SHA bea1945View commit details
Commits on Mar 12, 2018
-
while everything is still working: refactoring, pulled rooms out of i…
…nitialize to use dependency injection instead and trying to separate other dependencies
Configuration menu - View commit details
-
Copy full SHA for a87ae30 - Browse repository at this point
Copy the full SHA a87ae30View commit details
Commits on Apr 1, 2018
-
finished answering question for code analysis of Online Shopping Cart…
… for first part of the Design Activity
Configuration menu - View commit details
-
Copy full SHA for dcd77c7 - Browse repository at this point
Copy the full SHA dcd77c7View commit details -
adjusted id assignment for blocks and reservationswith a class variab…
…le, so the id isn't dependent on the length of the array, which might lead to duplicate ids
Configuration menu - View commit details
-
Copy full SHA for 2192c67 - Browse repository at this point
Copy the full SHA 2192c67View commit details -
changed code to eliminate other User's direct interaction with each R…
…oom instance's calendar
Configuration menu - View commit details
-
Copy full SHA for 659b5d0 - Browse repository at this point
Copy the full SHA 659b5d0View commit details -
adjusted User class so it doesnt need to directly know a reservations…
… date_range (more like adjusted the tests because that seemed to be the main use of the date_range)
Configuration menu - View commit details
-
Copy full SHA for cdcff7b - Browse repository at this point
Copy the full SHA cdcff7bView commit details
Commits on Apr 2, 2018
-
deleted attr_reader for @Reservations in Block class. it was used no …
…where in the code by other classes, so didn't need to change anything else
Configuration menu - View commit details
-
Copy full SHA for cfbcbec - Browse repository at this point
Copy the full SHA cfbcbecView commit details -
altered Room and Reservation class, so that reservation does directly…
… interact with the room's instance variable for cost
Configuration menu - View commit details
-
Copy full SHA for b4cee38 - Browse repository at this point
Copy the full SHA b4cee38View commit details -
updated design activity with what discussion of how to improve hotel'…
…s design and what I tried to do to implement it
Configuration menu - View commit details
-
Copy full SHA for cd3e93b - Browse repository at this point
Copy the full SHA cd3e93bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e4ff02c - Browse repository at this point
Copy the full SHA e4ff02cView commit details