{"id":15055977,"url":"https://github.com/lukederrynz/rideshare","last_synced_at":"2025-04-10T04:06:53.593Z","repository":{"id":45603501,"uuid":"101005108","full_name":"LukeDerryNZ/RideShare","owner":"LukeDerryNZ","description":"Ride Share System","archived":false,"fork":false,"pushed_at":"2017-09-10T00:59:46.000Z","size":286,"stargazers_count":7,"open_issues_count":2,"forks_count":4,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-10T04:06:48.362Z","etag":null,"topics":["java","javafx","javafx-application","javafx-desktop-apps","rideshare","ridesharing"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LukeDerryNZ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-22T00:55:52.000Z","updated_at":"2024-03-29T04:05:48.000Z","dependencies_parsed_at":"2022-09-23T10:13:58.486Z","dependency_job_id":null,"html_url":"https://github.com/LukeDerryNZ/RideShare","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LukeDerryNZ%2FRideShare","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LukeDerryNZ%2FRideShare/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LukeDerryNZ%2FRideShare/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LukeDerryNZ%2FRideShare/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LukeDerryNZ","download_url":"https://codeload.github.com/LukeDerryNZ/RideShare/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248154984,"owners_count":21056543,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","javafx","javafx-application","javafx-desktop-apps","rideshare","ridesharing"],"created_at":"2024-09-24T21:47:29.553Z","updated_at":"2025-04-10T04:06:53.573Z","avatar_url":"https://github.com/LukeDerryNZ.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RideShare\n\nProject Details: A Ride Sharing System using Java/JavaFX  \n\n\nProject Backlog:  \n\n1. As a ​​driver​​, I want to ​​register a car​​ so that it can be used for sharing a ride.  \n   Acceptance criteria:  \n  ● A driver can add as many cars as s/he wants to their account, defining data such  \n    as: type, model, colour, license plate, year and the number of physical seats.  \n\n2. As ​​driver​​, I want to ​​create stop points so I can specify where I will pick up or drop  \n   off passengers.  \n   Acceptance criteria:  \n  ● Stop points can be defined by their street address;  \n  ● The same address cannot be added more than once.  \n\n3. As ​​driver​​, I want to ​​add a route so I don’t have to re-enter the stop points I will  \n   pass for every trip (see Story 4).  \n   Acceptance criteria:  \n  ● A route is a list of stop points that the drivers is willing to pick up or drop off a  \n    passenger.  \n\n4. As ​​driver​​, I want to ​​add trips so that I can set up all the information for the rides  \n   that I will share later on (see Story 5).  \n   Acceptance criteria:  \n  ● A driver will:  \n    ○ Select a route, and set the times that they will pass each stop point;  \n    ○ Specify the direction they will travel (to / from Uni);  \n    ○ Indicate whether this is a recurrent trip, and if so,  \n      ■ Define the days on which the trip will happen;  \n      ■ Define the expiry date after which trips will no longer be rescheduled.  \n    ○ Indicate which of the driver’s cars will be used.  \n  ● The user will then be notified that the trip was created and all the trip data will be  \n    displayed.  \n\n5. As a ​​driver​​, I want to ​​share a ride so that it can be displayed to potential  \n   passengers.  \n   Acceptance criteria:  \n  ● While sharing a ride, the driver will define the initial number of seats that will be  \n    made available to passengers for this particular ride;  \n  ● The number of available seats on the car must be less than or equal than the  \n    number of physical seats (defined in Story 1);  \n  ● When a passenger books a ride, the number of available seats will be decreased  \n    accordingly;  \n  ● As default, all the physical seats are created as not available for the ride;  \n  ● While a ride has available seats, the ride data (stop-times, price, driver, etc.) should  \n    be available. When no more seats are available, the ride should no longer be  \n    displayed when a passenger searches for rides (see Story 7).  \n\n6. As a ​​user​​, I want to ​​search for existing stop points so that I can define or find  \n   rides.  \n   Acceptance criteria:  \n  ● A user can see a list of all the stop points ordered by the location (number, street,  \n    suburb);  \n  ● A user can search for an existing stop point in a suburb or on a street. The result  \n    will be ordered by location.  \n  \n7. As a ​​passenger​​, I want to ​​see the available rides at a specific stop point so that I  \n   can choose one.  \n   Acceptance criteria:  \n  ● When a user selects a stop point, the available rides (stop-times) will be displayed  \n    ordered by day and time;  \n  ● The user can filter rides based on the direction they are travelling (to/from Uni);  \n  ● The user can select an option and book a ride ​or​​ see its details (Story 8).  \n  \n8. As ​​passenger​​, I want to ​​see the details of a specific ride so that I can choose the  \n   best ride for me.  \n   Acceptance criteria:  \n  ● The user will see the related trip details such as: driver's info (name, photo, grade,  \n    etc.), car data (model, color, year, performance, seats available, etc.), route length  \n    and number of stops.  \n  ● The user can book the ride detailed ​or​​ go back to the list of rides (Story 7 result).  \n  \n9. As ​​passenger​​, I want to ​​book a ride​​ so that I can get to where I am going.  \n   Acceptance criteria:  \n  ● Either while browsing the Story 7 result or looking at a ride details (Story 8) a  \n    passenger can invoke the functionality to book a ride.  \n  ● The consequences of this action will be:  \n    ○ One of available seats in the driver’s car will be flagged as booked for the current  \n    passenger;  \n    ○ When there are no more available seats in the driver's car, it should no longer be  \n      displayed as result of Story 7.  \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukederrynz%2Frideshare","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flukederrynz%2Frideshare","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flukederrynz%2Frideshare/lists"}